手机通讯录系统C++

#include<iostream>
#include<string>
#include <fstream>
#define MAX 1000//通讯录的最大容量;
using namespace std;
//定义联系人结构体;
struct Lxr
{
	int tag;//tag表示当前存储单元状态,1表示被占用,0表示空闲;
	string name;
	string familytel;
	string officetel;
	string tel;
	string email;
	string group="未知";

};
Lxr Info[MAX];//创建通讯录;
int Total = 0;//通讯录中总人数;


void Showmenu()
{
	cout << "********************" << endl;
	cout << "***1、添加联系人****" << endl;
	cout << "***2、显示联系人****" << endl;
	cout << "***3、删除联系人****" << endl;
	cout << "***4、查找联系人****" << endl;
	cout << "***5、修改联系人****" << endl;
	cout << "***6、清空联系人****" << endl;
	cout << "***7、按分组查看****" << endl;
	cout << "***8、拨号功能****" << endl;
	cout << "***0、退出通讯录****" << endl;
	cout << "********************" << endl;
}
//1、显示功能选择菜单;

int Find(struct Lxr* p, string s)
{
	int i, flag = 0;
	for (i = 0; i < MAX; i++)
	{
		if (p[i].name == s)
		{
			flag = 1;
			break;
		}
		if (strncmp(p[i].name.c_str(), s.c_str(), 2) == 0)
		{
			flag = 1;
			cout << p[i].name << "\t";
			cout << p[i].tel << endl;
		}
	}
	if (flag == 1)
		return i;
	else
		return -1;
}
//2、查找联系人,若找到返回其所在位置,找不到则返回-1;

void Add(Lxr* p)
{
	if (Total == MAX)
	{
		cout << "Your contacts have been full! Cannot append to the list!" << endl;
	}
	else 
	{
		int flag = 0, k = 0;//flag记录数组中最小的空闲位置,k表示当前数组单元占用状态;
		for (int i = 0; i < MAX; i++)
		{

			if (p[i].tag == 0)
			{
				flag = i;
				k = 1;//k为1表示占用当前数组单元;
				break;
			}
		}
		if (k == 1)
		{
			cout << "Please input the name:";
			cin >> p[flag].name;
			for (int i = 0; i < Total; i++)
			{
				if(!strcmp(Info[i].name.c_str(), p[flag].name.c_str()))
				cout << "重复录入" << endl;
			}
			int f = Find(Info, p[flag].name);
			if (f != -1 && p[f].tag == 1)
			{
				cout << "Find repeated record! Cannot input!" << endl;
			}
			else
			{
				p[flag].tag = 1;//tag为1表示占用当前数组单元;
				cout << "tel nember:";
				cin >> p[flag].tel;
				cout << "familytel:";
				cin >> p[flag].familytel;
				cout << "officetel:";
				cin >> p[flag].officetel;
				cout << "email:";
				cin >> p[flag].email;
				cout << "group(未知、同事、亲戚、朋友、家人、同学等):";
				cin >> p[flag].group;
				if (p[flag].tel == "0" && p[flag].familytel == "0" && p[flag].officetel == "0")
				{
					cout << "至少输入其中一个号码,请返回选择修改本次输入的姓名对应的信息:";
				}
				else cout << "Succeed!" << endl;
				Total++;
			}

		}
	}
	//按任意键清屏;
	system("pause");
	system("cls");
}
//3、添加联系人,上限MAX名;

void Showcontects(struct Lxr* p)
{
	if (Total == 0)
	{
		cout << "The contects is empty!" << endl;
	}
	else
	{
		cout << "Name\t" << "Tel:\t\t" << "familytel:\t" << "officetel:\t" <<  "email:" << endl;
		for (int i = 0; i < MAX; i++)
		{
			if (p[i].tag == 1)
			{
				cout << p[i].name << "\t" << p[i].tel << "\t" << p[i].familytel
					<< "\t" << p[i].officetel << "\t" 
					<< p[i].email << endl;
			}

		}
	}
	//按任意键清屏;
	system("pause");
	system("cls");
}
//4、显示通讯录中的所有联系人;

void Delete(struct Lxr* p)
{
	cout << "Please input the name:" << endl;
	string k;
	cin >> k;
	int f = Find(p, k);
	if (f == -1)
	{
		cout << "Cannot find the target! Please check again!" << endl;
	}
	else
	{
		p[f].tag = 0;
		Total--;
		cout << "Succeed in deleting the record!" << endl;
	}
	//按任意键清屏;
	system("pause");
	system("cls");
}
//5、删除联系人;

void Showone(struct Lxr* p, int pl)
{
	cout << "Name\t" << "Tel:\t" << "familytel:\t" << "officetel:\t" <<  "email:" << endl;
	cout << p[pl].name << "\t" << p[pl].tel << "\t" << p[pl].familytel << "\t"
		<< p[pl].officetel << "\t" << p[pl].email << endl;
	//按任意键清屏;
	system("pause");
	system("cls");
}
//6、显示单个联系人;

int Backtomenu()
{
	cout << "Please input “B” or “b” if you want to go back or input “C”or “c” to continue!" << endl;
	string b;
	cin >> b;
	if (b == "B" || b == "b")
	{
		//清屏
		system("cls");
		return 1;
	}
	return 0;
}
//7、返回功能选择菜单

void Modify(struct Lxr* p)
{
	cout << "Please input the name of the target:" << endl;
	string n;
	cin >> n;
	int f = Find(p, n);
	while (f == -1)
	{
		cout << "Cannot find the target! Please input the name of the target again:" << endl;
		cin >> n;
		f = Find(p, n);
	}
	if (f != -1)
	{
		cout << "input the tel number:";
		cin >> p[f].tel;
		cout << "input the new name:";
		cin >> p[f].name;
		cout << "input the familytel:";
		cin >> p[f].familytel;
		cout << "input the officetel:";
		cin >> p[f].officetel;
		cout << "input the email:";
		cin >> p[f].email;
	}
	//按任意键清屏;
	system("pause");
	system("cls");
}
//8、修改联系人信息;
void check(string s)
{
	for (int i = 0; i < Total; i++)
	{
		if (Info[i].group == s)
		{
			cout << Info[i].name << "\t";
			cout << Info[i].tel << endl;
		}
	}
}
void call()
{
	string name1;
	for (int i = 0; i < Total; i++)
	{
		cout << Info[i].name << "\t";
		cout << Info[i].tel << endl;
	}
	cout << "the name you choose:";
	cin >> name1;
	for (int i = 0; i < Total; i++)
	{
		if (!strcmp(Info[i].name.c_str(), name1.c_str()))
		{
			cout << Info[i].name << "\t";
		for (int j = 0; j < strlen(Info[i].tel.c_str()); j++)
		{
			for (long k = 0; k < 10000; k++)
			for (long n = 0; n < 1000; n++);
			cout << Info[i].tel[j];
		}
		}
		
	}
}
void Clearall(struct Lxr* p)
{
	for (int i = 0; i < MAX; i++)
	{
		p[i].tag = 0;
	}
	Total = 0;
	cout << "Succeed in clearing the contects!" << endl;
	//按任意键清屏
	system("pause");
	system("cls");
}
//9、清空所有联系人(不需要清空数组,只需要将tag置零,做逻辑上的清空即可);

int main()
{

	int n,jixu;
	cout << "******************************" << endl;
	cout << "****欢迎使用通讯录管理系统****" << endl;
	cout << "******************************" << endl;
	cout << "按1继续" << endl;
	cin >> jixu;
	if (jixu == 1)
	{
		cout << "Please input the service you need:" << endl;
		Showmenu();
		cin >> n;
	}

	while (n)
	{
		switch (n)
		{
		case 1:
		{
			if (Backtomenu() == 1)
				break;
			Add(Info);
		}
		break; //1、添加联系人
		case 2:
		{
			Showcontects(Info);
		}
		break; //2、显示联系人
		case 3:
		{
			if (Backtomenu() == 1)
				break;
			Delete(Info);
		}
		break;  //3、删除联系人
		case 4:
		{
			if (Backtomenu() == 1)
				break;
			cout << "please input the name:" << endl;
			string s;
			cin >> s;
			int f = Find(Info, s);
			if (f == -1)
			{
				cout << "Cannot find the target! Please check again!" << endl;
				//按任意键清屏;
				system("pause");
				system("cls");
			}
			else
			{
				Showone(Info, f);
			}
		}
		break; //4、查找联系人
		case 5:
		{
			if (Backtomenu() == 1)
				break;
			Modify(Info);
		}
		break; //5、修改联系人
		case 6:
		{
			if (Backtomenu() == 1)
				break;
			Clearall(Info);
		}
		break; //6、清空联系人
		case 7:
		{
			if (Backtomenu() == 1)
				break;
			cout << "please input the group:" << endl;
			string s;
			cin >> s;
			check(s);
			cout << "All in this group" << endl;
		}
		break; //7、按分组查看
		case 8:
		{
			if (Backtomenu() == 1)
				break;
			call();
		}
		break; //8、拨号功能

		}
		cout << "Please input the service you need:" << endl;

		Showmenu();//若不退出,则用户可以一直在功能选择界面进行选择;
		cin >> n;
	}
	if (n == 0)
	{
		ofstream outfile;
		outfile.open("data.txt", ios::app | ios::in | ios::out);
		for (int i = 0; i < Total; i++)
		{
			outfile << "name:" << Info[i].name << "  " << "tel: " << Info[i].name << "\n";
			outfile << "familytel:" << Info[i].familytel << "  " << "officetel: " << Info[i].officetel << "email:" << Info[i].email << "group:" << Info[i].group << "\n";
		}
		outfile.close();
		cout << "Thanks! Welcome to your use next time!" << endl;
	}



	system("pause");

	return 0;
}


  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值