#include #include #include #include #include"list" using namespace std; class Data// 日期类 { public: void set_time( ); void show_time( ); private: bool is_time(int, int, int); int year; int month; int day; }; void Data::set_time( ) { char c1,c2; cout<<"请输入日期(格式年-月-日)"<>year>>c1>>month>>c2>>day; if(c1!='-'||c2!='-') cout<<"格式不正确,请重新输入"<PetList;//使用双向链表 //添加宠物信息 void PetAnimals::Insert() { PetAnimals Pet; char ch; int symbol=0;//判断宠物信息是否存在 list::iterator first,last; first=PetList.begin();//begin()指链表开始处 last=PetList.end();//end()指链表结尾处 do{ cout<<"【请输入宠物相关信息!】"<>Pet.Cnumber; cout<<"名称:"; cin>>Pet.Cname; cout<<"年龄:"; cin>>Pet.Cage; cout<<"重量:"; cin>>Pet.Cweight; cout<<"种类:"; cin>>Pet.Ctype; cout<<"价格:"; cin>>Pet.Cprice; cout<<"主人:"; cin>>Pet.Cpeople; for( ; first != last ; ++first ) { if((Pet.Cname==(*first).Cname)&&(Pet.Cprice==(*first).Cprice) &&(Pet.Ctype==(*first).Ctype))//假设宠物可以重名 { symbol=1;// 如果存在此宠物 cout<>ch; } while(ch=='Y'||ch=='y'); } //查找宠物信息 bool PetAnimals::Look() { string name,price,type; int symbol=0; int option; list ::iterator first,last; do { cout<<"\t【请输入你查找的方式】!"<>option; switch(option) { case 1: cout<<"请输入名称:"; cin>>name;break; case 2: cout<<"请输入价格:"; cin>>price;break; case 3: cout<<"请输入种类:"; cin>>type;break; case 4:break; } first=PetList.begin(); last=PetList.end(); for(;first!=last;++first) { if((name==(*first).Cname)&&(option==1)) { symbol=1; cout<<"宠物名称为"+(*first).Cname+"宠物信息如下:"<>name; cout<<"请输入价格:"; cin>>price; cout<<"请输入种类:"; cin>>type; list ::iterator first,last; first=PetList.begin(); last=PetList.end(); for(;first!=last;++first) { if((name==(*first).Cname)&&(price==(*first).Cprice)&&(type==(*first).Ctype)) { symbol=1; cout<>pet.Cage; cout<<"重量:"; cin>>pet.Cweight; cout<<"主人:"; cin>>pet.Cpeople; pet.Cname=name; pet.Cprice=price; pet.Ctype=type; for(;first!=last;++first) { if((name==(*first).Cname)&&(price==(*first).Cprice)&&(type==(*first).Ctype)) { (*first)=pet; } } return true; } else { cout<<"没有该宠物信息!"; return false; } } //显示所有宠物信息 void PetAnimals::Show() { list ::iterator first,last,it; first=PetList.begin(); last=PetList.end(); for(;first!=last;++first) { cout<<"******************您的宠物信息**********************"<>FileName; if(FileName.find (".")>FileName.length()) { FileName=FileName+".txt"; } //把String型的字符串转换成char*型的字符串 strcpy(file,FileName.c_str()); ofstream fout(file); if(!fout) { cout<<"★文件写入失败!请检查您的文件名!"<::iterator first,last; first=PetList.begin(); last=PetList.end(); for(;first!=last;++first) { fout<>FileName; if(FileName.find (".")>FileName.length()) { FileName=FileName+".txt"; } strcpy(file,FileName.c_str()); ifstream fin(file); int index; if(!fin) { cout<<"文件写入失败!请检查您的文件名!"<>str; index=str.find(":");//要":"后的内容 pet.Cnumber =str.substr(index+1);//要":"后的剩下字符串 fin>>str; index=str.find (":"); pet.Cname =str.substr(index+1); fin>>str; index=str.find (":"); pet.Cage =str.substr(index+1); fin>>str; index=str.find (":"); pet.Cweight =str.substr(index+1); fin>>str; index=str.find (":"); pet.Ctype =str.substr(index+1); fin>>str; index=str.find (":"); pet.Cprice=str.substr(index+1); fin>>str; index=str.find (":"); pet.Cpeople =str.substr(index+1); PetList.insert(PetList.end(),pet); } cout<<" 文件读取成功! "<>option; switch(option)//选择不同函数功能 { case 1: { pet.Insert(); break; } case 2: { pet.Look(); break; } case 3: { pet.Change(); break; } case 4: { pet.Show(); break; } case 5: { pet.Write(); break; } case 6: { pet.Read(); break; } case 7: { break ; } } } while(option != 8); return 0; }