我想编写一个搜索功能,您可以从文件中输出字符串。该函数请求用户输入想要搜索的字符串的第一个字母,for循环将搜索第一个字母与用户请求的字母相同的字符串。这是我的代码。
string bid, bname, bAuthor, bcat, bPub;
int bAmt = 0, i = 1;
bool bname2length;
char character[];
char firstChar;
ifstream inBook;
inBook.open("books.txt");
if(inBook.is_open())
{
cout << setfill('-') << setw(1) << "+" << setw(3) << "-" << setw(1) << "+" << setw(8) << "-" << setw(1) << "+" << setw(40) << "-" << setw(1) << "+" << setw(15) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(6) << "-" << setw(1) << "+" << endl;
cout << setfill(' ') << setw(1) << "|" << setw(3) << left << "No." << setw(1) << "|" << setw(8) << left << "BookID" << setw(1) << "|" << setw(40) << left << "Book Name" << setw(1) << "|" << setw(15) << left << "Author" << setw(1) << "|" << setw(20) << left << "Category" << setw(1) << "|" << setw(20) << left << "Publisher" << setw(1) << "|" << setw(6) << left << "Amount" << setw(1) << "|" << endl;
cout << setfill('-') << setw(1) << "+" << setw(3) << "-" << setw(1) << "+" << setw(8) << "-" << setw(1) << "+" << setw(40) << "-" << setw(1) << "+" << setw(15) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(6) << "-" << setw(1) << "+" << endl;
getline(inBook, bid, '#');
getline(inBook, bname, '#');
getline(inBook, bAuthor, '#');
getline(inBook, bAuthor, '#');
getline(inBook, bPub, '#');
inBook >> bAmt;
inBook.ignore(1);
while(!inBook.eof())
{
cout << setfill(' ') << setw(1) << "|" << setw(3) << left << i << setw(1) << "|" << setw(8) << left << bid << setw(1) << "|" << setw(40) << left << bname << setw(1) << "|" << setw(15) << left << bAuthor << setw(1) << "|" << setw(20) << left << bcat << setw(1) << "|" << setw(20) << left << bPub << setw(1) << "|" << setw(6) << left << bAmt << setw(1) << "|" << endl;
cout << setfill('-') << setw(1) << "+" << setw(3) << "-" << setw(1) << "+" << setw(8) << "-" << setw(1) << "+" << setw(40) << "-" << setw(1) << "+" << setw(15) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(20) << "-" << setw(1) << "+" << setw(6) << "-" << setw(1) << "+" << endl;
getline(inBook, bid, '#');
getline(inBook, bname, '#');
getline(inBook, bAuthor, '#');
getline(inBook, bcat, '#');
getline(inBook, bPub, '#');
inBook >> bAmt;
inBook.ignore(1);
i++;
cout << "Enter the First Character of Search Obj : ";
cin >> firstChar;
while(bid != ' ')
{
character[i] = bid;
i++;
}
cout << "Books with First Character of " + firstChar << endl;
for(int i=0; i<sizeof(character[]); i++)
{
if(character[i].chatAt(0) == firstChar)
{
cout << character[i] << endl;
}
}
}
inBook.close();
}
else
{
cout << "Invalid file!";
}
答案 0 :(得分:1)
除了@NathanOliver很棒的帖子之外,还不需要原始数组。你会让自己陷入困境。使用std::vector
或类似的东西。
#include <vector>
std::vector<char> bids;
while(bid != ' ')
{
bids.push_back(bid);
}
cout << "Books with First Character of " + firstChar << endl;
// C++11 for loop..Otherwise loop with iterators.
for (const auto& abid : bids)
{
cout << bid << endl;
}