实现一个通讯录; 通讯录可以用来存储1000个人的信息,每个人的信息包括: 姓名、性别、年龄、电话、住址 提供方法: 1. 添加联系人信息 2. 删除指定联系人信息 3. 查找指定

#define    LEN 3

struct people
{
	char name[10];
	char sex[3];
	char number[12];
	int age;
};
 struct contact
{
	 struct people *human;
	int capacity;
	size_t size;
};
 void Init(struct contact *con)
 {
	 con->capacity = LEN;
	 con->human = (struct people*)malloc(LEN*sizeof(struct people));
	 if (con->human == NULL)
	 {
		 printf("申请失败\n");
		 return;
	 }
	 con->size = 0;
 }
 void Check_cal(struct contact* con)
 {
	
	 if (con->size >= con->size)
	 {
		 struct people *p = { 0 };
		 p = (struct people*)realloc(con->human, (con->capacity + 3)*sizeof(struct people));
		 if (p == NULL)
		 {
			 printf("error\n");
			 return;
		 }
		 con->human = p;
		 con->capacity += 3;
	 }
 }
 void Insert(struct contact* con,char*name,char* sex,char* number,int age)
 {
	 Check_cal(con);
	 con->human[con->size].age = age;
	

	 strcpy((con->human[con-> size].sex), sex);
	 strcpy((con->human[con->size].number), number);

	 strcpy((con->human[con->size].name), name);
	 con->size++;
 }
 void display(struct contact con)
 {
	 for (int i = 0; i < con.size; i++)
	 {
		 printf("%s ", con.human[i].name);
		 printf("%d ", con.human[i].age);
		 printf("%s", con.human[i].sex);
		 printf("%s ", con.human[i].number);
		 printf("\n");
	 }
 }
 int find(struct contact *con,char*name)
 {
	 for (int i = 0; i < con->size; i++)
	 {
		 if (strcmp(name, con->human[i].name)==0)
			 return i;
	 }
	 return -1;
 }
 void erase(struct contact *con,char*name)
 {
	 int i=find(con,name);
	 for (int j = i; j < con->size - 1; j++)
	 {
		 con->human[j] = con->human[j + 1];
	 }
	 con->size--;
 }
 void alter(struct contact *con,char*name)
 {
	 int i = find(con,name);

 }
 void bubbsort(struct contact *con)
 {
	 for (int i = 0; i < con->size; i++)
	 {
		 int k = i;
		 for (int j = i+1; j < con->size; j++)
		 {
			 if (strcmp(con->human[k].name, con->human[j ].name))
			 {
				 k = j;
			 }
		 }
		 swap(con->human[i],con->human[k]);
	


	 }
}
 int main()
 {
	 struct contact l;
	 Init(&l);
	 Insert(&l, "雷宇飞", "男", "18309233241", 22);
	 Insert(&l, "尚石资", "男", "18309233242", 22);
	 Insert(&l, "李乐", "男", "18309233243", 22);
	 Insert(&l, "找小路", "男", "18309233244", 22);
	 Insert(&l, "李玲", "男", "18309233245", 22);
	 Insert(&l, "张蓉", "男", "18309233246", 22);
	 Insert(&l, "刘蕾", "男", "18309233247", 22);
	 Insert(&l, "马浩", "男", "18309233248", 22);
	 Insert(&l, "马晓晨", "男", "18309233249", 22);
	 Insert(&l, "崔浩本", "男", "1830923324q", 22);
	 Insert(&l, "马鹏质", "男", "1830923324r", 22);
	 display(l);
	 printf("\n");
	 bubbsort(&l);

	 
	 erase(&l,"刘蕾");
	


	 display(l);
	 system("pause");
 }

好的,这是一个比较具体的问题,我可以为您提供一个大体的思路和代码框架。 1. 定义联系人结构体 联系人结构体包括姓名性别年龄电话号码、住址信息。 ``` struct Contact { char name[20]; char sex[5]; int age; char phone[20]; char address[50]; }; ``` 2. 定义通讯录结构体 通讯录结构体包括联系人数组、联系人个数等信息。 ``` struct AddressBook { struct Contact contacts[100]; int count; }; ``` 3. 实现增加联系人功能 增加联系人功能包括输入联系人信息和将联系人信息存入通讯录数组中。 ``` void addContact(struct AddressBook *book) { printf("请输入姓名:"); scanf("%s", book->contacts[book->count].name); printf("请输入性别:"); scanf("%s", book->contacts[book->count].sex); printf("请输入年龄:"); scanf("%d", &book->contacts[book->count].age); printf("请输入电话号码:"); scanf("%s", book->contacts[book->count].phone); printf("请输入住址:"); scanf("%s", book->contacts[book->count].address); book->count++; printf("联系人添加!\n"); } ``` 4. 实现删除联系人功能 删除联系人功能需要输入要删除联系人姓名,然后在通讯录数组中查找删除联系人。 ``` void deleteContact(struct AddressBook *book) { char name[20]; printf("请输入要删除联系人姓名:"); scanf("%s", name); int i; for (i = 0; i < book->count; i++) { if (strcmp(name, book->contacts[i].name) == 0) { int j; for (j = i; j < book->count - 1; j++) { book->contacts[j] = book->contacts[j + 1]; } book->count--; printf("联系人删除!\n"); return; } } printf("未找到该联系人!\n"); } ``` 5. 实现查找联系人功能 查找联系人功能需要输入要查找联系人姓名,然后在通讯录数组中查找并输出该联系人信息。 ``` void findContact(struct AddressBook *book) { char name[20]; printf("请输入要查找联系人姓名:"); scanf("%s", name); int i; for (i = 0; i < book->count; i++) { if (strcmp(name, book->contacts[i].name) == 0) { printf("姓名:%s\n", book->contacts[i].name); printf("性别:%s\n", book->contacts[i].sex); printf("年龄:%d\n", book->contacts[i].age); printf("电话号码:%s\n", book->contacts[i].phone); printf("住址:%s\n", book->contacts[i].address); return; } } printf("未找到该联系人!\n"); } ``` 6. 实现修改联系人信息功能 修改联系人信息功能需要输入要修改的联系人姓名,然后在通讯录数组中查找并修改该联系人信息。 ``` void modifyContact(struct AddressBook *book) { char name[20]; printf("请输入要修改的联系人姓名:"); scanf("%s", name); int i; for (i = 0; i < book->count; i++) { if (strcmp(name, book->contacts[i].name) == 0) { printf("请输入新的姓名:"); scanf("%s", book->contacts[i].name); printf("请输入新的性别:"); scanf("%s", book->contacts[i].sex); printf("请输入新的年龄:"); scanf("%d", &book->contacts[i].age); printf("请输入新的电话号码:"); scanf("%s", book->contacts[i].phone); printf("请输入新的住址:"); scanf("%s", book->contacts[i].address); printf("联系人信息已修改!\n"); return; } } printf("未找到该联系人!\n"); } ``` 7. 实现排序功能 排序功能可以按照联系人姓名年龄进行排序。 ``` void sortContact(struct AddressBook *book) { int choice; printf("请选择排序方式(1.按姓名排序 2.按年龄排序):"); scanf("%d", &choice); int i, j; struct Contact temp; if (choice == 1) { for (i = 0; i < book->count - 1; i++) { for (j = 0; j < book->count - 1 - i; j++) { if (strcmp(book->contacts[j].name, book->contacts[j + 1].name) > 0) { temp = book->contacts[j]; book->contacts[j] = book->contacts[j + 1]; book->contacts[j + 1] = temp; } } } } else if (choice == 2) { for (i = 0; i < book->count - 1; i++) { for (j = 0; j < book->count - 1 - i; j++) { if (book->contacts[j].age > book->contacts[j + 1].age) { temp = book->contacts[j]; book->contacts[j] = book->contacts[j + 1]; book->contacts[j + 1] = temp; } } } } else { printf("无效的选择!\n"); return; } printf("通讯录已按照您的要求排序!\n"); } ``` 8. 实现打印通讯录功能 打印通讯录功能可以输出通讯录中每个联系人信息。 ``` void printContact(struct AddressBook *book) { int i; for (i = 0; i < book->count; i++) { printf("姓名:%s\n", book->contacts[i].name); printf("性别:%s\n", book->contacts[i].sex); printf("年龄:%d\n", book->contacts[i].age); printf("电话号码:%s\n", book->contacts[i].phone); printf("住址:%s\n", book->contacts[i].address); printf("\n"); } } ``` 以上就是一个简单的用 C 语言实现通讯录功能的代码框架。需要注意的是,这只是一个基础的实现,还有很多细节问题需要考虑,比如输入格式的判断、防止数组越界等等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值