head.h部分:
#ifndef HEAD_H_
#define HEAD_H_
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h> // sleep函数头文件
#define uint unsigned int
#define OK 0
#define ERROR -1
#define MALLOC_ERROR -2
#define N 20
typedef int ElementType;
typedef struct node
{
ElementType ID; // ID号
char Name [N]; // 姓名
char Mobile_Phone [N]; // 手机号码
char Home_Address [N]; // 家庭住址
char Company_Tell [N]; // 公司电话
struct node* next; // 节点指针
}Node;
typedef Node* PNode; //重命名节点指针类型
//显示操作界面
int Interface_Display ();
//添加好友信息 (尾插法)
int Add_Friend (PNode head, ElementType num);
//显示所有好友信息
int Friend_Information (PNode head);
//查找好友
int Search_Friend (PNode head, char* Name);
//删除好友
void Delete_Friend (PNode head, char* Name);
#endif
head.c的代码:
#include "head.h"
//显示操作界面
int Interface_Display ()
{
system ("clear");
printf ("t************************************** n");
printf ("t~ 欢迎使用通讯录 ~n");
printf ("t~ ~n");
printf ("t~ 1 >>>>>>>> 添加好友信息 ~n");
printf ("t~ 2 >>>>>>>> 列表好友信息 ~n");
printf ("t~ 3 >>>>>>>> 搜索好友 ~n");
printf ("t~ 4 >>>>>>>> 删除好友 ~n");
printf ("t~ 5 >>>>>>>> 退出 ~n");
printf ("t~ ~n");
printf ("t~ ~n");
printf ("t~ 作者:believe ~n");
printf ("t~*************************************~n");
printf (" n");
printf (" n");
printf ("t请输入对应数字选择相应功能:");
}
//添加好友信息 (尾插法)
int Add_Friend (PNode head, ElementType num)
{
if (NULL == head)
{
return ERROR;
}
//创建一个新的结点
PNode p = (PNode) malloc(sizeof(Node)/sizeof(char));
if (NULL == p)
{
return MALLOC_ERROR;
}
//将新数据赋给新结点
system("clear");
printf ("t*************添加好友***************n");
p->ID = num;
printf ("t好友的ID为:%dn", p->ID);
printf ("n");
printf ("t请输入好友的名字:");
scanf ("%s", p->Name);
printf ("n");
printf ("t请输入好友的手机号:");
scanf ("%s", p->Mobile_Phone);
printf ("n");
printf ("t请输入好友的家庭住址:");
scanf ("%s", p->Home_Address);
printf ("n");
printf ("t请输入好友的公司电话:");
scanf ("%s", p->Company_Tell);
printf ("n");
p->next = NULL;
//找到最后一个结点
PNode Ptmp; //将头结点地址给临时指针Ptmp
Ptmp = head;
while (Ptmp->next)
{
Ptmp = Ptmp->next;
}
Ptmp->next = p;
return OK;
}
//显示所有好友信息
int Friend_Information (PNode head)
{
if (NULL == head)
{
return ERROR;
}
PNode p = head->next;
printf ("tIDt姓名tt手机号tt住址ttt公司电话n");
while (p)
{
printf ("t%dt%stt%stt%sttt%sn", p->ID,
p->Name, p->Mobile_Phone, p->Home_Address,
p->Company_Tell);
p = p->next;
}
putchar('n');
return OK;
}
//查找好友
int Search_Friend (PNode head, char* Name) //通过名字查找好友
{
PNode p = head;
PNode q = NULL;
if ((NULL != p) && NULL != (p->next))
{
while (p->next)
{
q = p->next;
if ((NULL != q) && 0 == (strcmp(q->Name, Name)))
{
printf ("t好友信息: ntID:%dnt姓名: %snt手机号码: %snt家庭地址:%snt公司电话: %sn", q->ID, q->Name, q->Mobile_Phone, q->Home_Address, q->Company_Tell);
}
else
{
printf ("t对不起,您的通讯录没有该好友!n");
}
p = p->next;
}
}
/* 另一种做法
if (NULL == head)
{
return ERROR;
}
PNode p;
int flag = 1;
for (p = head->next; p != NULL; p = p->next)
{
if (0 == strcmp(p->Name, Name))
{
flag = 0;
printf ("t好友信息:ntID: %dnt姓名: %snt手机号码: %snt家庭地址: %snt公司电话: %sn", p->ID, p->Name, p->Mobile_Phone, p->Home_Address, p->Company_Tell);
}
}
fi (flag)
{
printf ("t对不起,您的通讯录没有该好友!n");
}
putchar('n');
*/
return OK;
}
//删除好友
void Delete_Friend (PNode head, char* Name)
{
PNode p = head;
PNode q = NULL;
while (NULL != p && NULL != (p->next))
{
q = p->next;
if (NULL != q && 0 == strcmp(q->Name, Name))
{
p->next = q->next;
free(q);
int j;
printf ("t正在删除n");
printf ("t请稍候");
fflush (stdout); //强制刷新缓存,输出显示
for (j = 0; j < 3; j++)
{
sleep (1); //linux使用sleep,参数为秒
printf (".");
fflush(stdout); //强制刷新缓存,输出显示
}
printf ("n");
printf ("t该好友已成功删除!n");
}
else if (NULL == q->next && 0 != strcmp(q->Name, Name))
{
printf ("t您的通讯录没有该好友!n");
}
p = p->next;
}
}










