我的布尔函数check_gift无法正常工作。
我将一个txt文件复制到了vector giftstore中。现在我想检查一个给定的商品是否在商店里。为了测试函数check_gift,我从实际的txt文件中获取了一个项目,但该函数给出了错误的答案。它返回false而不是true。
我做错了什么?
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <cstdlib>
#include <string>
#include <cassert>
using namespace std;
typedef vector<string> Wishes;
int size(Wishes& w){ return static_cast<int>(w.size()); }
struct Wishlist
{
double budget;
Wishes wishes;
};
struct Gift
{
double price;
string name;
};
typedef vector<Gift> Giftstore;
int size(Giftstore& g) { return static_cast<int>(g.size()); }
void read_wishlist_into_struct(ifstream& infile, Wishlist& wishlist)
{
double b;
infile>>b;
wishlist.budget=b;
int i=0;
string name;
getline(infile,name);
while(infile)
{
wishlist.wishes.push_back(name);
i++;
getline(infile,name);
}
infile.close();
}
void show_wishlist(Wishlist wishlist)
{
cout<<"Budget: "<<wishlist.budget<<endl<<endl;
cout<<"Wishes: "<<endl;
for(int i=0; i<size(wishlist.wishes); i++)
{
cout<<wishlist.wishes[i]<<endl;
}
cout<<endl;
}
void read_giftstore_into_vector(ifstream& infile, Gift& gift, Giftstore& giftstore)
{
double p;
string name;
int i=0;
infile>>p;
while(infile)
{
gift.price=p;
getline(infile,name);
gift.name=name;
giftstore.push_back(gift);
i++;
infile>>p;
}
infile.close();
}
void show_giftstore(Giftstore giftstore)
{
cout<<"All possible gifts in giftstore: "<<endl<<endl;
for(int i=0; i<giftstore.size(); i++)
{
cout<<giftstore[i].price<<"\t"<<giftstore[i].name<<endl;
}
cout<<endl;
}
bool check_gift(Giftstore giftstore, string giftname)
{
int i=0;
while(i<size(giftstore))
{
if(giftstore[i].name==giftname)
{
cout<<"Yes"<<endl;
return true;
}
else
{
i++;
}
}
return false;
}
void clear(Wishlist& b)
{
b.budget=0;
while(!b.wishes.empty())
{
b.wishes.pop_back();
}
}
void copy(Wishlist a, Wishlist& b)
{
b.budget=a.budget;
for (int i=0; i<size(b.wishes); i++)
{
b.wishes.push_back(a.wishes[i]);
}
}
int main ()
{
ifstream infile2("giftstore.txt");
Gift gift;
Giftstore giftstore;
read_giftstore_into_vector(infile2, gift, giftstore);
show_giftstore(giftstore);
string giftname;
giftname="dvd Up van Pixar";
bool x;
x=check_gift(giftstore, giftname);
cout<<"in store?: "<<x<<endl;
return 0;
}
答案 0 :(得分:0)
了解如何调试。如果您无法逐行跟踪代码,请尝试保留某种日志。
现在至少将此输出到控制台。
在你的情况下 1.验证输入文件是否已成功打开 2.在阅读时打印出每件礼物。
是一个很好的开始方式。
如果您希望能够放入多个日志语句,然后在以后删除它们,则可以使用可以在一个地方关闭的宏。
对于继续投入生产的大型项目来说,记录是一项非常棘手的技能,但是您应该学习如何在短期内完成调试程序。
我们甚至无法看到输入文件中的内容。这就是人们贬低你的问题的原因。
好的:现在你告诉我你的问题是你需要从你读过的每个字符串的前面修剪空格。
有多种方法可以做到这一点,但
trimmed = s.substr( s.find_first_not_of(" \n\r\t" ) );
现在可能会奏效。
但我的原始答案仍然有效:请学习调试。如果你在阅读时输出了字符串,你会看到这些前导空格。