C++實現(xiàn)鏈表版本通訊錄
本文實例為大家分享了C++實現(xiàn)鏈表版本通訊錄的具體代碼,供大家參考,具體內(nèi)容如下
#include <iostream> #include <string> using namespace std; class Address; class Contact{ private: string name; string sex; string tel; string QQ; string address; string addition; Contact *next; public: Contact(); friend class Address; }; Contact::Contact() { next = NULL; } class Address{ public: Address(); ~Address(); int show(); void insert(); void delete_per(); void display(); void search(); void update(); private: Contact *head; }; Address::Address() { head = new Contact; if(head == NULL) { cout<<"fail create"<<endl; } } Address::~Address() { delete head; } int Address::show() //主菜單函數(shù) { int choice = 0 ; cout<<"\t\t\t\t**************************"<<endl; cout<<"\t\t\t\t* 通訊錄c++簡易版本 *"<<endl; cout<<"\t\t\t\t**************************"<<endl; cout<<"\t\t\t\t* 1、添加 2、刪除 *"<<endl; cout<<"\t\t\t\t**************************"<<endl; cout<<"\t\t\t\t* 3、查看 4、搜索 *"<<endl; cout<<"\t\t\t\t**************************"<<endl; cout<<"\t\t\t\t* 5、更新 6、退出 *"<<endl; cout<<"\t\t\t\t**************************"<<endl; cout<<"\t\t\t\t請輸入選擇:"; cin>>choice; while(!(choice >= 1&&choice <= 6)) { while(getchar()!='\n'); cout<<"輸入有誤,請重新輸入!"; cin>>choice; } return choice; } void Address::insert() //添加聯(lián)系人 { Contact *p = head; char relay = 0; while(p->next != NULL) { p = p->next; } Contact *person = new Contact; cout<<"請輸入姓名:"; cin>>person->name; cout<<"請輸入性別:"; cin>>person->sex; cout<<"請輸入電話:"; cin>>person->tel; cout<<"請輸入QQ:"; cin>>person->QQ; cout<<"請輸入住址:"; cin>>person->address; cout<<"請輸入備注:"; cin>>person->addition; p->next = person; person->next = NULL; cout<<"\n添加成功,是否繼續(xù)添加?(y/n)"; cin>>relay; while(!(relay == 'y'||relay == 'Y'||relay == 'N'||relay == 'n')) { cout<<"輸入錯誤,請重新輸入(y/n):"; cin>>relay; } if(relay == 'y'||relay == 'y') { system("clear"); insert(); } } void Address::delete_per() //刪除聯(lián)系人 { string m_name; Contact *p = head; Contact *pre = head; int flag = 0; cout<<"請輸入你要刪除的聯(lián)系人姓名!"; cin>>m_name; while(p->next != NULL) { pre = p; p = p->next; if(p->name == m_name) { pre->next = p->next; delete p; p = NULL; flag = 1; break; } } if(flag == 1) { cout<<"刪除成功!"<<endl; } else { cout<<"您刪除的聯(lián)系人不存在,刪除失敗!"<<endl; } } void Address::display() //查看聯(lián)系人 { Contact *p = head; while(p->next != NULL) { p = p->next; cout<<endl<<"======================================="<<endl; cout<<"姓名:"<<p->name<<endl; cout<<"性別:"<<p->sex<<endl; cout<<"電話:"<<p->tel<<endl; cout<<"QQ:"<<p->QQ<<endl; cout<<"地址:"<<p->address<<endl; cout<<"備注:"<<p->addition<<endl; } } void Address::search() //搜索聯(lián)系人 { string m_name; Contact *p = head; int flag = 0; cout<<"請輸入你要搜索的聯(lián)系人姓名:"; cin>>m_name; while(p->next != NULL) { p = p->next; if(p->name == m_name) { cout<<endl<<"======================================="<<endl; cout<<"姓名:"<<p->name<<endl; cout<<"性別:"<<p->sex<<endl; cout<<"電話:"<<p->tel<<endl; cout<<"QQ:"<<p->QQ<<endl; cout<<"地址:"<<p->address<<endl; cout<<"備注:"<<p->addition<<endl; flag = 1; } } if(flag == 1) { cout<<"\n查詢成功!"<<endl; } else { cout<<"您查詢的聯(lián)系人不存在,刪除失?。?<<endl; } } void Address::update() //修改聯(lián)系人 { Contact *p = head; string m_name; int flag = 0; cout<<"請輸入你要更新的姓名:"; cin>>m_name; while(p->next != NULL) { p = p->next; if(p->name == m_name) { cout<<"請更新性別:"; cin>>p->sex; cout<<"請更新電話:"; cin>>p->tel; cout<<"請更新QQ:"; cin>>p->QQ; cout<<"請更新住址:"; cin>>p->address; cout<<"請更新備注:"; cin>>p->addition; flag = 1; break; } } if(flag == 1) { cout<<"\n更新成功"<<endl; } else { cout<<"查無此人,更新失敗!"<<endl; } } int main() { Address *person = new Address; int choice = 0; while(1) { system("clear"); choice = person->show(); switch(choice) { case 1: { system("clear"); person->insert(); break; } case 2: { system("clear"); person->delete_per(); break; } case 3: { system("clear"); person->display(); break; } case 4: { system("clear"); person->search(); break; } case 5: { system("clear"); person->update(); break; } case 6: { exit(0); } } cout<<"\n\n按任意鍵返回....."; getchar(); getchar(); } return 0; }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
欄 目:C語言
下一篇:C++ opencv實現(xiàn)的把藍底照片轉(zhuǎn)化為白底照片功能完
本文標(biāo)題:C++實現(xiàn)鏈表版本通訊錄
本文地址:http://mengdiqiu.com.cn/a1/Cyuyan/61.html
您可能感興趣的文章
- 04-02c語言沒有round函數(shù) round c語言
- 01-10數(shù)據(jù)結(jié)構(gòu)課程設(shè)計-用棧實現(xiàn)表達式求值的方法詳解
- 01-10使用OpenGL實現(xiàn)3D立體顯示的程序代碼
- 01-10深入理解C++中常見的關(guān)鍵字含義
- 01-10求斐波那契(Fibonacci)數(shù)列通項的七種實現(xiàn)方法
- 01-10C語言 解決不用+、-、&#215;、&#247;數(shù)字運算符做加法
- 01-10使用C++實現(xiàn)全排列算法的方法詳解
- 01-10c++中inline的用法分析
- 01-10深入理解鏈表的各類操作詳解
- 01-10用C++實現(xiàn)DBSCAN聚類算法


閱讀排行
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對數(shù)函數(shù)的表達式 c語言中對
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機閱讀
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10C#中split用法實例總結(jié)
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10delphi制作wav文件的方法
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 01-11ajax實現(xiàn)頁面的局部加載
- 04-02jquery與jsp,用jquery
- 08-05織夢dedecms什么時候用欄目交叉功能?