C++實現(xiàn)簡易通訊錄
更新時間:2020年07月23日 10:40:35 作者:逆風(fēng)行礫
這篇文章主要為大家詳細(xì)介紹了C++實現(xiàn)簡易通訊錄,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了C++實現(xiàn)簡易通訊錄的具體代碼,供大家參考,具體內(nèi)容如下
#include <iostream>
#include <string>
#define MAX 1000
using namespace std;
// 設(shè)計聯(lián)系人的結(jié)構(gòu)體
struct Person
{
string m_Name;
int m_Sex; // 1、男 2 女
int m_Age;
string m_Phone;
string m_Addr;
};
// 設(shè)計通訊錄的結(jié)構(gòu)體
struct Addressbooks
{
struct Person personArray[MAX];
int m_Size;
};
// 1、菜單界面
void showMenu()
{
cout << "***************************" << endl;
cout << "***** 1、添加聯(lián)系人 *****" << endl;
cout << "***** 2、顯示聯(lián)系人 *****" << endl;
cout << "***** 3、刪除聯(lián)系人 *****" << endl;
cout << "***** 4、查找聯(lián)系人 *****" << endl;
cout << "***** 5、修改聯(lián)系人 *****" << endl;
cout << "***** 6、清空聯(lián)系人 *****" << endl;
cout << "***** 0、退出通訊錄 *****" << endl;
cout << "***************************" << endl;
}
// 2、添加聯(lián)系人
void addPerson(Addressbooks * abs)
{
// 判斷通訊錄是否已滿
if (abs->m_Size == MAX)
{
cout << "通訊錄已經(jīng)滿,無法添加!" << endl;
return;
}
else
{
// 添加具體聯(lián)系人
string name;
cout << "請輸入姓名:" << endl;
cin >> name;
abs->personArray[abs->m_Size].m_Name = name;
cout << "請輸入性別:" << endl;
cout << "1----男\(zhòng)n2----女" << endl;
int sex = 0;
while (true)
{
cin >> sex;
if (sex == 1 || sex == 2)
{
abs->personArray[abs->m_Size].m_Sex = sex;
break;
}
cout << "輸入有誤,請重新輸入" << endl;
}
cout << "請輸入年齡:" << endl;
int age = 0;
cin >> age;
abs->personArray[abs->m_Size].m_Age = age;
cout << "請輸入聯(lián)系電話:" << endl;
string phone;
cin >> phone;
abs->personArray[abs->m_Size].m_Phone = phone;
cout << "請輸入家庭地址:" << endl;
string address;
cin >> address;
abs->personArray[abs->m_Size].m_Addr = address;
abs->m_Size++;
cout << "添加成功!" << endl;
system("pause"); // 請按任意鍵繼續(xù)
system("cls"); // 清屏操作
}
}
// 3、顯示所有的聯(lián)系人
void showPerson(Addressbooks * abs)
{
// 判斷通訊錄中人數(shù)是否為0
if (abs->m_Size == 0)
{
cout << "當(dāng)前記錄為空" << endl;
}
else
{
for (int i = 0; i < abs->m_Size; i++)
{
cout << "姓名:" << abs->personArray[i].m_Name << "\t";
cout << "性別:" << (abs->personArray[i].m_Sex == 1 ? "男" : "女") << "\t";
cout << "年齡:" << abs->personArray[i].m_Age << "\t";
cout << "電話:" << abs->personArray[i].m_Phone << "\t";
cout << "住址:" << abs->personArray[i].m_Addr << endl;
}
}
system("pause");
system("cls");
}
// 4、檢測聯(lián)系人是否存在,若存在,返回聯(lián)系人所在數(shù)組中的具體位置
// 參數(shù)1 通訊錄 參數(shù)2 對比姓名
int isExit(Addressbooks * abs, string name)
{
for (int i = 0; i < abs->m_Size; i++)
{
if (abs->personArray[i].m_Name == name)
{
return i; //找到了,返回該人在數(shù)組中的編號
}
}
return -1; // 沒有找到,則返回-1
}
// 5、刪除指定的聯(lián)系人
void deletePerson(Addressbooks * abs)
{
cout << "請輸入您要刪除的聯(lián)系人姓名:" << endl;
string name;
cin >> name;
int ret = isExit(abs, name);
if (ret != -1)
{
// 找到此人 進(jìn)行刪除操作
for (int i = ret; i < abs->m_Size; i++)
{
abs->personArray[i] = abs->personArray[i + 1];
}
abs->m_Size--;
cout << "刪除成功" << endl;
}
else
{
cout << "查無此人" << endl;
}
system("pause");
system("cls");
}
// 6、查找指定的聯(lián)系人信息
void findPerson(Addressbooks * abs)
{
cout << "請輸入您要查找的聯(lián)系人:" << endl;
string name;
cin >> name;
int ret = isExit(abs, name);
if (ret != -1)
{
cout << "姓名:" << abs->personArray[ret].m_Name << "\t";
cout << "性別:" << abs->personArray[ret].m_Sex << "\t";
cout << "年齡:" << abs->personArray[ret].m_Age << "\t";
cout << "電話:" << abs->personArray[ret].m_Phone << "\t";
cout << "地址:" << abs->personArray[ret].m_Addr << endl;;
}
else
{
cout << "查無此人" << endl;
}
system("pause");
system("cls");
}
// 7、修改指定的聯(lián)系人信息
void modifyPerson(Addressbooks * abs)
{
cout << "請輸入您要修改的聯(lián)系人:" << endl;
string name;
cin >> name;
int ret = isExit(abs, name);
if (ret != -1)
{
string name;
cout << "請輸入姓名:" << endl;
cin >> name;
abs->personArray[ret].m_Name = name;
cout << "請輸入性別:" << endl;
cout << "1---男\(zhòng)t2---女" << endl;
int sex = 0;
//cin >> sex;
while (true)
{
cin >> sex;
if (sex == 1 || sex == 2)
{
abs->personArray[ret].m_Sex = sex;
break;
}
cout << "輸入錯誤,請重新輸入:" << endl;
}
cout << "請輸入年齡:" << endl;
int age = 0;
cin >> age;
abs->personArray[ret].m_Age = age;
cout << "請輸入聯(lián)系電話:" << endl;
string phone;
cin >> phone;
abs->personArray[ret].m_Phone = phone;
cout << "請輸入一個家庭地址:" << endl;
string address;
cin >> address;
abs->personArray[ret].m_Addr = address;
}
else
{
cout << "查無此人" << endl;
}
system("pause");
system("cls");
}
// 8、清空聯(lián)系人
void cleanPerson(Addressbooks * abs)
{
abs->m_Size = 0;
cout << "聯(lián)系人已經(jīng)清空!?。? << endl;
system("pause");
system("cls");
}
int main()
{
// 創(chuàng)建通訊錄結(jié)構(gòu)體變量
Addressbooks abs;
// 初始化通訊錄中當(dāng)前人數(shù)為0
abs.m_Size = 0;
int select = 0;
while (true)
{
// 菜單調(diào)用
showMenu();
cin >> select;
switch (select)
{
case 1: // 1、添加聯(lián)系人
addPerson(&abs); //利用地址傳遞可以修飾實參
break;
case 2: // 2、顯示聯(lián)系人
showPerson(&abs);
break;
case 3: // 3、刪除聯(lián)系人
deletePerson(&abs);
/* {
cout << "請輸入刪除聯(lián)系人的姓名:" << endl;
string name;
cin >> name;
if (isExit(&abs, name) == -1)
{
cout << "查無此人" << endl;
}
else
{
cout << "找到此人" << endl;
}
}*/
break;
case 4: // 4、查找聯(lián)系人
findPerson(&abs);
break;
case 5: // 5、修改聯(lián)系人
modifyPerson(&abs);
break;
case 6: // 6、清空聯(lián)系人
cleanPerson(&abs);
break;
case 0: // 0、退出通訊錄
cout << "歡迎下次使用" << endl;
system("pause");
return 0;
break;
default:
break;
}
}
system("pause");
return 0;
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
VC++?2019?"const?char*"類型的實參與"LPCTSTR"
這篇文章主要給大家介紹了關(guān)于VC++?2019?"const?char*"類型的實參與"LPCTSTR"類型的形參不兼容的解決方法,文中通過圖文介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2023-03-03
深入解讀C++ 內(nèi)聯(lián)函數(shù)inline|nullptr
內(nèi)聯(lián)函數(shù):用** inline 修飾的函數(shù)叫做內(nèi)聯(lián)函數(shù),編譯時C++編譯器會在調(diào)用的地方展開內(nèi)聯(lián)函數(shù)**,這樣調(diào)用內(nèi)聯(lián)函數(shù)就需要創(chuàng)建棧楨,就提高效率了,這篇文章給大家介紹C++ 內(nèi)聯(lián)函數(shù)inline|nullptr的相關(guān)知識,感興趣的朋友跟隨小編一起看看吧2024-07-07

