服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C语言通讯录管理系统完整版

C语言通讯录管理系统完整版

2021-06-20 16:13hackbuteer1 C/C++

这篇文章主要为大家详细介绍了C语言通讯录管理系统的完整版本,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

C语言实现了通讯录的录入信息、保存信息、插入、删除、排序、查找、单个显示等功能。。

完整的代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
#include <stdio.h>
#include <malloc.h> //得到指向大小为Size的内存区域的首字节的指针//
#include <string.h>
#include <stdlib.h> //标准库函数//
#define NULL 0
#define LEN sizeof(struct address_list) //计算字节//
int n;
struct address_list
{
 char name[30]; //名字
 char work[30]; //职业
 char handset[30]; //手机
 char email[30]; //电子邮件
 char address[30]; //通讯地址
 struct address_list *next;
};
struct address_list *shifang(struct address_list *head); // 释放内存函数声明
//创建函数,不带头结点的链表
struct address_list *creat(void
{
 struct address_list *head,*p1,*p2;
 char name[20];
 n=0;
 p1=(struct address_list *)malloc(LEN);
 p2=p1; //强制内存转换
 printf("请输入通讯录的内容!\n姓名输入为0时表示创建完毕!\n");
 printf("请输入姓名:");
 gets(name);
 if(strcmp(name,"0")!=0)
 {
 strcpy(p1->name,name);
 printf("请输入职业:"); gets(p1->work);
 printf("请输入手机:"); gets(p1->handset);
 printf("请输入电子邮件:"); gets(p1->email);
 printf("请输入通讯地址:"); gets(p1->address);
 head=NULL;
 while(1)
 {
  n=n+1; //记录通讯录人数个数
  if(n==1)
  head=p1;
  else
  p2->next=p1;
  p2=p1;
  printf("请输入姓名:");
  gets(name);
  if(strcmp(name,"0")==0)
  {
  break;
  }
  else
  {
  p1=(struct address_list *)malloc(LEN);
  strcpy(p1->name,name);
  printf("请输入职业:"); gets(p1->work);
  printf("请输入手机:"); gets(p1->handset);
  printf("请输入电子邮件:"); gets(p1->email);
  printf("请输入通讯地址:"); gets(p1->address);
  }
 }
 p2->next=NULL;
 return head;
 }
 else
 return 0;
}
//输出函数
void print(struct address_list *head)
{
 struct address_list *p;
 if(head!=NULL)
 {
 p=head;
 printf("本通讯录现在共有%d人:\n",n);
 printf("---姓名-------职业--------手机-------Email-------通讯地址\n");
 printf("==================================\n");
 do
 {
  printf("== %s",p->name); printf(" ");
  printf("%s",p->work); printf(" ");
  printf("%s",p->handset); printf(" ");
  printf("%s",p->email); printf(" ");
  printf("%s",p->address); printf(" \n");
  p=p->next;
 }while(p!=NULL);
 printf("==================================\n");
 }
 else
 printf("通讯录为空,无法输出!\n");
}
//增加函数
struct address_list *insert(struct address_list *head)
{
 struct address_list *p0,*p1,*p2;
 char name[20];
 p1=head;
 printf("请输入增加的内容:\n");
 printf("请输入姓名:"); gets(name);
 if(strcmp(name,"0")==0)
 {
 printf("姓名不能为0,增加失败!\n");
 return(head);
 }
 else
 {
 p0=(struct address_list *)malloc(LEN);
 strcpy(p0->name,name);
 printf("请输入职业:"); gets(p0->work);
 printf("请输入手机:"); gets(p0->handset);
 printf("请输入电子邮件:"); gets(p0->email);
 printf("请输入通讯地址:"); gets(p0->address);
 n=n+1;
 if(head==NULL)
 {
  head=p0;
  p0->next=NULL;
  return head;
 }
 else
 {
  while(strcmp(p0->name,p1->name)>0&&(p1->next!=NULL))
  {
  p2=p1;
  p1=p1->next;
  }
  if(strcmp(p0->name,p1->name)<0 || strcmp(p0->name,p1->name)==0)
  {
  if(head==p1)
  {
   head=p0;
  }
  else
  {
   p2->next=p0;
  }
  p0->next=p1;
  }
  else
  {
  p1->next=p0;
  p0->next=NULL;
  }
  return head;
 }
 }
}
struct address_list* delete_txl(struct address_list *head)
{
 struct address_list *p,*q;
 char name[30];
 if(head==NULL)
 {
 printf("通讯录为空,无法显示!\n");
 return head;
 }
 p=head;
 printf("请输入需要删除的人的姓名:");
 gets(name);
 if(strcmp(head->name,name)==0)
 {
 head=head->next;
 free(p);
 printf("删除操作成功!\n");
 return head;
 }
 else
 {
 q=head,p=head->next;
 while(p!=NULL)
 {
  if(strcmp(p->name,name)==0)
  {
  q->next=p->next;
  free(p);
  printf("删除操作成功!\n");
  return head;
  }
  p=p->next;
  q=q->next;
 }
 }
}
//显示函数
struct address_list *display(struct address_list *head)
{
 struct address_list *p1,*p2;
 char name[30];
 int m;
 if(head==NULL)
 {
 printf("通讯录为空,无法显示!\n");
 return head;
 }
 p1=head;
 m=0;
 printf("请输入需要显示人的姓名:");
 gets(name);
 while(p1!=NULL)
 {
 while((strcmp(p1->name,name))!=0 && p1->next!=NULL)
 {
  p2=p1;
  p1=p1->next;
 }
 if(strcmp(p1->name,name)==0)
 {
  m++;
  printf("%s的通讯内容如下:\n",name);
  printf("---姓名--------职业--------手机-------Email------通讯地址\n");
  printf("==================================\n");
  printf("== %s",p1->name);printf(" ");
  printf("%s",p1->work);printf(" ");
  printf("%s",p1->handset);printf(" ");
  printf("%s",p1->email);printf(" ");
  printf("%s",p1->address); printf(" \n");
  printf("==================================\n");
 }
 p1=p1->next;
 }
 if(m==0)
 {
 printf("此人未在本通讯录中!\n");
 }
 return(head);
}
 
//排序函数
struct address_list *paixu(struct address_list *head)
{
 struct address_list *p1,*p2;
 int i,j;
 struct address_list1
 {
 char name[30];
 char work[30];
 char handset[30];
 char email[30];
 char address[30];
 };
 struct address_list1 px[200];
 struct address_list1 temp;
 if(head==NULL)
 {
 printf("通讯录为空,无法排序!\n");
 return(head);
 }
 p1=head;
 for(i=0;i<n,p1!=NULL;i++)
 {
 strcpy(px[i].name,p1->name);
 strcpy(px[i].work,p1->work);
 strcpy(px[i].handset,p1->handset);
 strcpy(px[i].email,p1->email);
 strcpy(px[i].address,p1->address);
 p2=p1;
 p1=p1->next;
 }
 head=shifang(head);
 for(j=0;j<n-1;j++)
 {
 for(i=j+1;i<n;i++)
 {
  if(strcmp(px[i].name,px[j].name)<0)
  {
  temp=px[i];
  px[i]=px[j];
  px[j]=temp;
  }
 }
 }
 p1=(struct address_list *)malloc(LEN);
 p2=p1;
 strcpy(p1->name,px[0].name);
 strcpy(p1->work,px[0].work);
 strcpy(p1->handset,px[0].handset);
 strcpy(p1->email,px[0].email);
 strcpy(p1->address,px[0].address);
 
 head=p1;
 for(i=1;i<n;i++)
 {
 p1=(struct address_list *)malloc(LEN);
 strcpy(p1->name,px[i].name);
 strcpy(p1->work,px[i].work);
 strcpy(p1->handset,px[i].handset);
 strcpy(p1->email,px[i].email);
 strcpy(p1->address,px[i].address);
 p2->next=p1;
 p2=p1;
 }
 p2->next=NULL;
 printf("按姓名排序后为:\n");
 print(head);
 return(head);
}
//姓名查找函数
struct address_list *search(struct address_list *head)
{
 struct address_list *p1,*p2;
 int m;
 char name[30];
 if(head==NULL)
 {
 printf("通讯录为空,无法分类查找!\n");
 return(head);
 }
 p1=head;
 printf("********************\n");
 printf("** 请输入需要查找的姓名 **\n");
 printf("********************\n");
 m=0;
 gets(name);
 while(p1!=NULL)
 {
 while(strcmp(p1->name,name)!=0&&p1->next!=NULL)
 {
  p2=p1;
  p1=p1->next;
 }
 if(strcmp(p1->name,name)==0)
 {
  m++;
  printf("你查找的内容是:\n");
  printf("+++++++++++++++++++++++++++++++++++\n");
  printf("++ %s %s %s %s %s\n",p1->name,p1->work,p1->handset,p1->email,p1->address);
  printf("+++++++++++++++++++++++++++++++++++\n");
 }
 p1=p1->next;
 
 if(m==0)
 {
  printf("此人未在本通讯录中!\n");
 }
 break;
 }
 
 return(head);
}
 
//释放内存函数
struct address_list *shifang(struct address_list *head)
{
 struct address_list *p1;
 while(head!=NULL)
 {
 p1=head;
 head=head->next;
 free(p1);
 }
 return(head);
}
 
//文件写入函数
void save(struct address_list *head)
{
 FILE *fp;
 struct address_list *p1;
 char tong[30];
 if(head==NULL)
 {
 printf("通讯录为空,无法存储!\n");
 return;
 }
 printf("请输入保存后的文件名:");
 gets(tong);
 fp=fopen("(tong).txt","w");
 if(fp==NULL)
 {
 printf("cannot open file\n");
 return;
 }
 p1=head;
 fprintf(fp,"姓名 职业 手机 Email 通讯地址\n");
 for(;p1!=NULL;)
 {
 fprintf(fp,"%s %s %s %s %s\n",p1->name,p1->work,p1->handset,p1->email,p1->address);
 p1=p1->next;
 }
 printf("保存完毕!\n");
 fclose(fp);
}
 
//文件读出函数
struct address_list *load(struct address_list *head)
{
 FILE *fp;
 char tong[30];
 struct address_list *p1,*p2;
 printf("请输入要输出的文件名:");
 gets(tong);
 fp=fopen("(tong).txt","r");
 if(fp==NULL)
 {
 printf("此通讯录名不存在,无法输出!\n");
 return(head);
 }
 else
 {
 head=shifang(head);
 }
 p1=(struct address_list *)malloc(LEN);
 fscanf(fp,"%s%s%s%s%s",&p1->name,&p1->work,&p1->handset,&p1->email,&p1->address);
 if(feof(fp)!=0)
 {
 printf("文件为空,无法打开!\n");
 return(head);
 }
 else
 {
 rewind(fp);
 p2=p1;
 head=p1;
 n=0;
 while(feof(fp)==0)
 {
  fscanf(fp,"%s%s%s%s%s",&p1->name,&p1->work,&p1->handset,&p1->email,&p1->address);
  if(feof(fp)!=0)
  break;
  p2->next=p1;
  p2=p1;
  p1=(struct address_list *)malloc(LEN);
  n=n+1;
 }
 p2->next=NULL;
 p1=head;
 head=head->next;
 n=n-1;
 free(p1);
 print(head);
 printf("打开完毕!\n");
 return(head);
 }
 fclose(fp);
}
 
//综合操作函数
struct address_list *menu(struct address_list *head)
{
 char num[10];
 while(1)
 {
 printf("*********************\n");
 printf("*** 1 姓名查找 ****\n");
 printf("*** 2 单个显示 ****\n");
 printf("*** 3 增加  ****\n");
 printf("*** 4 退出  ****\n");
 printf("*********************\n");
 printf("请输入您选择的操作:");
 gets(num);
 switch(*num)
 {
 case '1':
  {
  head=search(head);    //姓名查找
  print(head);
  }
  break;
 case '2':
  {
  head=display(head);    //显示
  }
  break;
 case '3':
  {
  head=insert(head);    //增加
  print(head);
  }
  break;
 case '4':
  return head;
 default:
  printf("操作错误,此项不存在!\n");
  break;
 }
 if(strcmp(num,"6")==0)
  break;
 }
 return head;
}
//主函数
void main()
{
 struct address_list *head=NULL;
 char num[10];
 printf("*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n");
 printf("*=*  程序说明  *=*\n");
 printf("*=* 请及时保存创建完毕的通讯录内容! *=*\n");
 printf("*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n");
 while(1)
 {
 printf("************************\n");
 printf("*** 1 创建通讯录 ****\n");
 printf("*** 2 按名字排序 ****\n");
 printf("*** 3 综合操作 ****\n");
 printf("*** 4 保存  ****\n");
 printf("*** 5 打开  ****\n");
 printf("*** 6 删除  ****\n");
 printf("*** 7 退出  ****\n");
 printf("************************\n");
 printf("请输入您选择的操作:");
 gets(num);
 switch(*num)
 {
 case '1':
  {
  if(head==NULL)
  {
   head=creat();    //创建
   print(head);
  }
  else
  {
   head=shifang(head);
   head=creat();    //重新创建
   print(head);
  }
  }
  break;
 case '2':
  {
  head=paixu(head);    //排序
  }
  break;
 case '3':
  {
  head=menu(head);    //综合操作
  }
  break;
 case '4':
  {
  save(head);     //文件保存
  print(head);
  }
  break;
 case '5':
  {
  head=load(head);    //文件输出
  }
  break;
 case '6':
  {
  head=delete_txl(head);    //删除
  print(head);
  }
  break;
 case '7':
  head=shifang(head);
  break;
 default:
  printf("操作错误,此项不存在!\n");
  break;
 }
 if(strcmp(num,"7")==0)
  break;
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/Hackbuteer1/article/details/6573488

延伸 · 阅读

精彩推荐