我正在尝试找到一种方法,在我的代码中搜索我使用过的向量中的对象。我已经将信息推回到不同的向量中,我知道.size来显示信息。我希望用户能够输入银行帐号然后如果正确则显示其他向量的内容。
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
//declaring four vectors
std::vector<string>names;
std::vector<string>address;
std::vector<int>age;
std::vector<double>accountnumber;
//forward declaration of functions
void namesInput ();
void addressInput ();
void ageInput ();
void accountnumberInput ();
int main()
{
//variable for switch statement
int choice;
system("title HSBC Online Banking");
system("color B6");
cout << "Please select from the following options" << endl;
cout << "----------------------------------------" << endl;
cout << "1. Enter profile " << endl;
cout << "2. Search for client " << endl;
cout << "3. Exit" << endl;
cin >> choice;
switch(choice)
{
case 1:
//calling functions for first switch case
namesInput ();
addressInput ();
ageInput ();
accountnumberInput ();
system("cls");
break;
case 2:
break;
case 3:
system("exit");
break;
}
return 0;
}
void namesInput ()
{
system("cls");
for (int i = 1; i <= 3; i++)
{
string temp;//variable to give to vector
cout<<"Enter " << i << " first, middle and last names : ";
cin>>temp;
names.push_back(temp);//push back into vector
}
}
void addressInput ()
{
system ("cls");
for (int i = 1; i <= 3; i++)
{
string temp;//variable to give to vector
cout<<"Enter " << i << " House Number, Street, Postcode : ";
cin>>temp;
address.push_back(temp);//push back into vector
}
}
void ageInput ()
{
system ("cls");
for (int i = 1; i <= 3; i++)
{
int temp;//variable to give to vector
cout<<"Enter " << i << " Day, Month, Year : ";
cin>>temp;
age.push_back(temp);//push back into vector
}
}
void accountnumberInput ()
{
system ("cls");
for (int i = 1; i <= 1; i++)
{
int temp;//variable to give to vector
cout<<"Enter " << i << " Account Number ";
cin>>temp;
accountnumber.push_back(temp);//push back into vector
}
main ();
}
void findClient ()
{
cout << "To find a client please enter their account number" << endl;
}
答案 0 :(得分:0)
std::vector<double>accountnumber;
对帐号使用 double 不对我来说似乎是一个不错的选择:您可能想要使用std::string
。
例如:请注意,双打之间的“精确”比较是不可能的(因此使用双精度作为键搜索帐号是有问题的);相反,你可以用字符串做到这一点。
因此,假设您使用vector<string>
作为帐号,您可以使用std::find()
在向量中找到给定的帐户位置,例如:
auto it = find(accountNumbers.begin(), accountNumbers.end(),
accountNumberToFind);
if (it != accountNumbers.end())
{
... Found, process it ...
}
一旦找到了找到的帐户的迭代器,就可以使用像(it - accountNumbers.begin())
这样的简单指针/迭代器算法从中获取基于向量0的索引。
然后,给定此索引,您可以访问其他向量中的相应项。
但是,从面向对象的设计角度来看,我更喜欢为帐户定义一个类,包括帐号,姓名,地址等几个字段,并且只有一个 vector<Account>
< / strong>(而不是单个帐户属性的几个向量)。
答案 1 :(得分:0)
我建议您重新访问代码的某些部分,但是,根据您的代码,您可以执行以下操作:
void lookForAccount(){
system ("cls");
for (int i = 1; i <= 1; i++)
{
int temp;//variable to give to vector
cout<<"Enter " << i << " Account Number you want to look for";
cin>>temp;
for(int j = 0;j<accountnumber.size();j++){
if(accountnumber[j]==temp){
cout<<"account number: "<<accountnumber[j]<<", name: "<<names[j]<<"etc..."<<endl;
}
}
}
main ();
}
而不是这种虚拟方法我反正建议使用迭代器和std :: find。
但是,正如评论中所指出的,由于以下几个原因,此代码容易出错:处理帐号加倍并不是最佳选择。此外,我建议重新设计您的代码,以使用C ++对象处理所有帐户信息。