用c++建立一通讯录,输入姓名、电话号码、住址等信息,然后对通信簿进行显示、查找、添加、修改及删除。
时间: 2023-10-20 14:10:17 浏览: 160
下面是一个简单的用C++实现通讯录管理系统的代码,包括了基本的信息录入、显示、查找、添加、修改和删除功能。代码中使用了文件存储数据,保证数据的持久化。
```c++
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std;
// 定义联系人结构体
struct Contact {
string name; // 姓名
string phone; // 电话号码
string address; // 地址
};
// 定义通讯录类
class AddressBook {
public:
void showMenu(); // 显示菜单
void addContact(); // 添加联系人
void showContacts(); // 显示所有联系人
void findContact(); // 查找联系人
void modifyContact(); // 修改联系人
void deleteContact(); // 删除联系人
private:
vector<Contact> contacts; // 联系人列表
string fileName = "address_book.txt"; // 数据文件名
void saveToFile(); // 将数据保存到文件
void loadFromFile(); // 从文件中加载数据
};
// 显示菜单
void AddressBook::showMenu() {
cout << "======================" << endl;
cout << "1. 添加联系人" << endl;
cout << "2. 显示所有联系人" << endl;
cout << "3. 查找联系人" << endl;
cout << "4. 修改联系人" << endl;
cout << "5. 删除联系人" << endl;
cout << "0. 退出" << endl;
cout << "======================" << endl;
}
// 添加联系人
void AddressBook::addContact() {
Contact contact;
cout << "请输入联系人姓名: ";
getline(cin, contact.name);
cout << "请输入联系人电话号码: ";
getline(cin, contact.phone);
cout << "请输入联系人地址: ";
getline(cin, contact.address);
contacts.push_back(contact);
saveToFile();
cout << "联系人添加成功!" << endl;
}
// 显示所有联系人
void AddressBook::showContacts() {
if (contacts.empty()) {
cout << "通讯录为空!" << endl;
return;
}
cout << "所有联系人:" << endl;
for (const auto& contact : contacts) {
cout << "姓名:" << contact.name << ",电话:" << contact.phone << ",地址:" << contact.address << endl;
}
}
// 查找联系人
void AddressBook::findContact() {
string name;
cout << "请输入要查找的联系人姓名: ";
getline(cin, name);
for (const auto& contact : contacts) {
if (contact.name == name) {
cout << "联系人信息:" << endl;
cout << "姓名:" << contact.name << ",电话:" << contact.phone << ",地址:" << contact.address << endl;
return;
}
}
cout << "未找到该联系人!" << endl;
}
// 修改联系人
void AddressBook::modifyContact() {
string name;
cout << "请输入要修改的联系人姓名: ";
getline(cin, name);
for (auto& contact : contacts) {
if (contact.name == name) {
cout << "请输入新的电话号码: ";
getline(cin, contact.phone);
cout << "请输入新的地址: ";
getline(cin, contact.address);
saveToFile();
cout << "联系人信息修改成功!" << endl;
return;
}
}
cout << "未找到该联系人!" << endl;
}
// 删除联系人
void AddressBook::deleteContact() {
string name;
cout << "请输入要删除的联系人姓名: ";
getline(cin, name);
for (auto it = contacts.begin(); it != contacts.end(); ++it) {
if (it->name == name) {
contacts.erase(it);
saveToFile();
cout << "联系人删除成功!" << endl;
return;
}
}
cout << "未找到该联系人!" << endl;
}
// 将数据保存到文件
void AddressBook::saveToFile() {
ofstream ofs(fileName);
for (const auto& contact : contacts) {
ofs << contact.name << "," << contact.phone << "," << contact.address << endl;
}
}
// 从文件中加载数据
void AddressBook::loadFromFile() {
ifstream ifs(fileName);
if (!ifs) {
cout << "无法打开数据文件!" << endl;
return;
}
string line;
while (getline(ifs, line)) {
Contact contact;
size_t pos1 = line.find(',');
size_t pos2 = line.find(',', pos1 + 1);
if (pos1 != string::npos && pos2 != string::npos) {
contact.name = line.substr(0, pos1);
contact.phone = line.substr(pos1 + 1, pos2 - pos1 - 1);
contact.address = line.substr(pos2 + 1);
contacts.push_back(contact);
}
}
}
int main() {
AddressBook addressBook;
addressBook.loadFromFile();
while (true) {
addressBook.showMenu();
int choice;
cout << "请选择操作: ";
cin >> choice;
cin.ignore(); // 忽略之前输入的回车符
switch (choice) {
case 0:
cout << "欢迎下次使用!" << endl;
return 0;
case 1:
addressBook.addContact();
break;
case 2:
addressBook.showContacts();
break;
case 3:
addressBook.findContact();
break;
case 4:
addressBook.modifyContact();
break;
case 5:
addressBook.deleteContact();
break;
default:
cout << "无效的操作,请重新输入!" << endl;
break;
}
}
return 0;
}
```
运行程序后,将显示一个菜单,可以选择添加联系人、显示所有联系人、查找联系人、修改联系人和删除联系人等操作。所有的联系人数据将被保存到 `address_book.txt` 文件中。
阅读全文