我迷失了如何像2d阵列那样分配2d矢量。 阵列
MyArray[0][1] = "User";
MyArray[1][1] = "Pass";
使用矢量我不知道你是否需要使用后推或什么,但我需要能够将它分配到矢量中的第二个位置" [1] []&#34 ;但我更愿意,如果我没有必要调整矢量大小,然后在可能的情况下分配给它。
我的代码
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <stdlib.h>
using namespace std;
vector<vector <string> > UserPass(2,vector <string> (1));
string User, Pass;
string lower(string var);
string resetInput;
string input;
int x;
int y;
void initUsers();
void prompt();
void password();
void login();
bool loginSuccess;
int main()
{
initUsers();
prompt();
return 0;
}
void initUsers() {
UserPass[0][0] = "admin";
UserPass[1][0] = "admin";
}
void addUser(string User, string Pass) {
\\This is where I would add onto the vector
}
string lower(string var) {
transform(var.begin(),var.end(),var.begin(), ::tolower);
return var;
}
void login()
{
cout << "Please Enter your Username\n";
cin >> User;
lower(User);
cout << "Please Enter your Password\n";
cin >> Pass;
for (unsigned x = 0; x < 1; x++) {
for (unsigned y = 0; y < UserPass.size(); y++) {
if ((User == UserPass[x][y]) && (Pass == UserPass[x+1][y])) {
loginSuccess = true;
cout << "You have successfully logged in to your account." << endl;
break;
}
}
}
if (loginSuccess == false) {
cout << "Incorrect password or username.\n";
}
}
void password()
{
while(true) {
cout << "Reset your Password to: \n";
getline(cin, resetInput);
UserPass[x+1][y] = resetInput;
cout << UserPass[x+1][y] << " is now your new password\n";
break;
}
}
void prompt()
{
while(true){
cout << ">";
getline(cin,input);
lower(input);
if (input == "login" && loginSuccess == true) {
cout << "You are already logged in as <" << User << ">" << endl;
}
if (input == "login" && loginSuccess == false) {
login();
}
if ((input == "logout" && loginSuccess == false) or (input == "password" && loginSuccess == false)) {
cout << "You have not logged in yet.\n";
}
if (input == "logout" && loginSuccess == true) {
loginSuccess = false;
cout << "You have successfully logged out.\n";
}
if (input == "password" && loginSuccess == true) {
password();
}
if (input == "exit") {
exit(EXIT_SUCCESS);
}
if (input == "clear"){
system("cls");
}
}
}
答案 0 :(得分:1)
好像你应该使用地图而不是矢量。您的密钥可以是用户,关联的值可以是密码。这将避免所有用户的O(N)循环。如果你设置使用向量,因为你的顶级向量似乎只有两个值,你也可以使用一个结构(或对)的单个向量,每个向量与用户和传递。
答案 1 :(得分:0)
如果要将用户及其密码添加到矢量,则该功能将如下所示
void addUser( const std::string &User, const std::string &Pass )
{
UserPass.push_back( { User, Pass } );
}