91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么利用vector容器實現通訊錄功能

發布時間:2021-08-06 17:44:26 來源:億速云 閱讀:224 作者:Leah 欄目:編程語言

C++中怎么利用vector容器實現通訊錄功能,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

main.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : main.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 16時47分52秒Description : 主函數Funcion List : main()*****************************************************/ #include "../../include/head.h" personMessage pep;vector<personMessage> person;vector<personMessage>::iterator it; int main(){ //personMessage pep; //vector<personMessage> person;  char ch = 0;  //system("clear");  while(ch != 'q') { if((ch != 'a') && (ch != 'c') && (ch != 'd') && (ch != 'f')) {  system("clear");  ch = book_ui(); }  switch(ch) {      case 'a':  {  ch = add_person();  break;  }  case 'c':  {  ch = change_person();  break;  }  case 'd':  {  ch = delete_person();  break;  }  case 'e':  {  ch = display_person();  break;  }  case 'f':  {  ch = find_person();  break;  }  case 'q':  {  cout << "Byebye!" << endl;  return 0;  break;  }  default:  {  cout << "input error!" << endl;  break;  } } }   return 0;}

head.h

/*****************************************************Copyright (C): 2017-2018 File name  : head.hAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 17時11分29秒Description : Funcion List : *****************************************************/ #ifndef __HEAD_H__#define __HEAD_H__ #include <iostream>#include <string>#include <vector>#include <algorithm> #include <stdio.h>#include <string.h> using namespace std; class personMessage{public: personMessage(); personMessage(string s); ~personMessage();  personMessage& operator=(string s); personMessage& operator=(personMessage& other);  /* sort排序算法需要重載'<',注意加const! */ bool operator<(const personMessage& p) const; bool operator>(const personMessage& p) const; bool operator<=(const personMessage& p) const; bool operator>=(const personMessage& p) const;   bool operator==(string s);  friend istream& operator>>(istream& in, personMessage& p); friend ostream& operator<<(ostream& out, personMessage& p);  int selectFlag; //用來選擇哪一個私有成員! private: string name_; string addr_; string phone_;}; extern personMessage pep;extern vector<personMessage> person;extern vector<personMessage>::iterator it; extern char book_ui();extern char add_person();extern char change_person();extern char delete_person();extern char display_person();extern char find_person(); #endif

book.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : book.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 18時53分19秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" personMessage::personMessage() : selectFlag(0){ cout << "default coonstructor!" << endl;} personMessage::personMessage(string s){ name_ = s;} personMessage::~personMessage(){ cout << "destroy person message!" << endl;} #if 1personMessage& personMessage::operator=(string s){ name_ = s; return *this;}#endif personMessage& personMessage::operator=(personMessage& other){ if(this == &other) { return *this; }  name_ = other.name_; addr_ = other.addr_; phone_ = other.phone_; return *this;} bool personMessage::operator>(const personMessage& p) const{ return name_ > p.name_;} bool personMessage::operator>=(const personMessage& p) const{ return name_ >= p.name_;} bool personMessage::operator<(const personMessage& p) const{ return name_ < p.name_;} bool personMessage::operator<=(const personMessage& p) const{ return name_ <= p.name_;} bool personMessage::operator==(string s){ if(selectFlag == 1) { return name_ == s; } else if(selectFlag == 2) { return addr_ == s; } else if(selectFlag == 3) { return phone_ == s; } else { return false; }} #if 1istream& operator>>(istream& in, personMessage& p){ string name; string addr; string phone;  cout << "請輸入新的成員名字:" << endl; in >> name; p.name_ = name;  cout << "請輸入新的成員地址:" << endl; in >> addr; p.addr_ = addr;  cout << "請輸入新的成員電話:" << endl; in >> phone; p.phone_ = phone;  return in;} ostream& operator<<(ostream& out, personMessage& p){ out << "名字: " << p.name_ << endl; out << "地址: " << p.addr_ << endl; out << "電話: " << p.phone_ << endl;  return out;}#endif

book_ui.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : book_ui.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 16時49分50秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char book_ui(){ char ch = 0;  cout << " ____________________________________" << endl; cout << "|                  |" << endl; cout << "|    歡迎進入通訊錄系統 v2.0   |" << endl; cout << "|                  |" << endl; cout << "|====================================|" << endl; cout << "|                  |" << endl; cout << "|     a. 增加新的成員      |" << endl; cout << "|     c. 修改成員信息      |" << endl; cout << "|     d. 刪除成員信息      |" << endl; cout << "|     e. 展示所有成員      |" << endl; cout << "|     f. 查找成員信息      |" << endl; cout << "|     q. 退出通訊錄系統     |" << endl; cout << "|____________________________________|" << endl; cout << endl << "請輸入你的選擇:" << endl; cin >> ch;  return ch;}

add_person.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : add_person.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 17時22分56秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char add_person(){ cout << "This is add person!" << endl; #if 0 getchar(); string tmp;  getline(cin, tmp);  cout << "tmp = " << tmp << endl;  pep = tmp;#endif  /* 輸入新的成員信息 */ cin >> pep; cout << pep << endl;  /* 向vector插入元素 */ person.push_back(pep);  cout << "插入成員信息成功!" << endl;  char ch = 0;  cout << "是否返回主菜單?(y/n)" << endl; getchar(); cin >> ch;  if(ch == 'y') { return 0; } else if(ch == 'n') { return 'a'; } else { cout << "輸入錯誤!" << endl; return 0; }}

delete_person.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : delete_person.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 18時29分33秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char delete_person(){ cout << "This is delete person!" << endl;  /* 刪除成員的信息 */ string pep_info;  int d_flag = 0; int d_key = 0;  cout << "請輸入你想要查找的方式(1-姓名/2-地址/3-電話):" << endl; cin >> d_key;  switch(d_key) { case 1: {  cout << "請輸入你想要刪除成員的名字:" << endl;  cin >> pep_info;  break; } case 2: {  cout << "請輸入你想要刪除成員的地址:" << endl;  cin >> pep_info;  break; } case 3: {  cout << "請輸入你想要刪除成員的電話:" << endl;  cin >> pep_info;  break; } default: {  cout << "輸入有誤!" << endl;  return 0;  break; } }  for(it = person.begin(); it != person.end(); ) { it->selectFlag = d_key; if(*it == pep_info) {  person.erase(person.begin()+d_flag, person.begin()+d_flag+1);  cout << "刪除成員信息成功!" << endl; } else {  ++it;  d_flag++; } }  char ch = 0;  cout << "是否返回主菜單?(y/n)" << endl; getchar(); cin >> ch;  if(ch == 'y') { return 0; } else if(ch == 'n') { return 'd'; } else { cout << "輸入錯誤!" << endl; return 0; }}

change_person.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : change_person.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 18時20分15秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char change_person(){ cout << "This is change person!" << endl;  /* 修改成員的信息 */ string pep_info;  int ch_flag = 0; int c_key = 0;  cout << "請輸入你想要查找的方式(1-姓名/2-地址/3-電話):" << endl; cin >> c_key;  switch(c_key) { case 1: {  cout << "請輸入你想要修改成員的名字:" << endl;  cin >> pep_info;  break; } case 2: {  cout << "請輸入你想要修改成員的地址:" << endl;  cin >> pep_info;  break; } case 3: {  cout << "請輸入你想要修改成員的電話:" << endl;  cin >> pep_info;  break; } default: {  cout << "輸入有誤!" << endl;  return 0;  break; } }  for(it = person.begin(); it != person.end(); ++it) { it->selectFlag = c_key; if(*it == pep_info) {  ch_flag = 1;  cin >> *it;  cout << "修改成員信息成功!" << endl; } }  if(ch_flag != 1) { cout << "沒有找到該成員!" << endl; }  char ch = 0;  cout << "是否返回主菜單?(y/n)" << endl; getchar(); cin >> ch;  if(ch == 'y') { return 0; } else if(ch == 'n') { return 'c'; } else { cout << "輸入錯誤!" << endl; return 0; }}

find_person.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : find_person.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 18時21分59秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char find_person(){ cout << "This is find person!" << endl;  int f_key = 0; int f_flag = 0; /* 輸入查找的姓名 */ string f_info;  cout << "請輸入查找方式(1-姓名/2-地址/3-電話)" << endl; cin >> f_key;  switch(f_key) { case 1: {  cout << "請輸入你想要查找成員的名字:" << endl;  cin >> f_info;  break; } case 2: {  cout << "請輸入你想要查找成員的地址:" << endl;  cin >> f_info;  break; } case 3: {  cout << "請輸入你想要查找成員的名字:" << endl;  cin >> f_info;  break; } default: {  cout << "輸入有誤!" << endl;  return 0;  break; } }  //pep.selectFlag = 2; //it迭代器在變化,不能直接賦值。  for(it = person.begin(); it != person.end(); ++it) { it->selectFlag = f_key; if(*it == f_info) {  f_flag = 1;  cout << "找到該成員!" << endl;  cout << *it << endl; } }  if(f_flag != 1) { cout << "沒有找到該成員!" << endl; }  char ch = 0;  cout << "是否返回主菜單?(y/n)" << endl; getchar(); cin >> ch;  if(ch == 'y') { return 0; } else if(ch == 'n') { return 'f'; } else { cout << "輸入錯誤!" << endl; return 0; }}

display_person.cpp

/*****************************************************Copyright (C): 2017-2018 File name  : display_person.cppAuthor    : ZhengqijunDate     : 2017年02月12日 星期日 18時23分04秒Description : Funcion List : *****************************************************/ #include "../../include/head.h" char display_person(){ cout << "This is display person!" << endl;  sort(person.begin(), person.end());  for(it = person.begin(); it != person.end(); ++it) { cout << *it << endl; }  char ch = 0; cout << "按任意鍵返回" << endl; getchar(); cin >> ch; return 0;}

關于C++中怎么利用vector容器實現通訊錄功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

竹北市| 巢湖市| 玛曲县| 宁远县| 鸡泽县| 富顺县| 巍山| 科技| 东乌| 东至县| 阿克苏市| 蒙自县| 福贡县| 上思县| 金堂县| 宁国市| 文化| 汉寿县| 昆山市| 邯郸县| 黄石市| 根河市| 鹤山市| 德令哈市| 义马市| 富蕴县| 栾城县| 宝山区| 宾川县| 邵东县| 翁源县| 禄劝| 巍山| 韩城市| 德保县| 黄平县| 正阳县| 正镶白旗| 绥芬河市| 称多县| 宁化县|