C语言实现个人通讯录管理系统语言实现个人通讯录管理系统
如何用c语言制作简易的个人通讯录管理系统?想必这是每一位初步学习c语言的同学需要解决的一个大问题。如何将这些数据
类型不完全相同的数据元素存储并访问呢?采用结构体便能轻松解决这个问题!
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<windows.h>
struct stu //第一部分:声明结构体类型struct stu
{
char name[100];//姓名为字符串型
int xh;//学号为整形
int grade;//年级
char cel[15];//手机
char tel[50];//电话
char mail[50];//邮件
char add[100];//地址为字符串型
char post[15];//邮编
struct stu *next;//用指针处理链表,next是指针变量,指向结构体变量
};
struct stu *charu(struct stu *head,struct stu *q)//第二部分:插入函数(插入新结点)
{
struct stu *p;
for(p=head;p->next!=NULL;p=p->next);//for(使p也指向head;当p为空文件时 ;p指向下一个结点)
p->next=q;
q->next=NULL;
return head;
}
void search(struct stu *head) //第三部分:查找结点并输出
{
struct stu *p;
int a;//要查找学生的学号
if(head->next==NULL)//头文件为空时打印出的结果为"通讯录为空"
printf("**********************************通讯录为空!!!*********************************");
else//头文件不为空时,开始查询学生的信息
{
printf(" 输入要查询学生学号:");
scanf("%d",&a);
for(p=head->next;p->next!=NULL;p=p->next)//for(使p也指向head;当p为空文件时 ;p指向下一个结点)
{
if(p->xh==a) //如果输入的学号和某个相同,输出以下的东西。
{
printf(" 要查找的学生信息为:");
printf(" ★姓名:");puts(p->name);
printf(" 学号: ");printf("%d",p->xh);
printf(" 年级:");printf("%d",p->grade);
printf(" 手机:");puts(p->cel);
printf(" 电话:");puts(p->tel);
printf(" 邮箱:");puts(p->mail);
printf(" 地址");puts(p->add);
printf(" 邮编:");puts(p->post);
printf(" 查找成功!!!");
printf("");
break;
}
}
if(p->xh==a)
{
printf(" 要查找的学生信息为:");
printf(" ★姓名:");puts(p->name);
printf(" 年级:");printf("%d",p->grade);
printf(" 手机:");puts(p->cel);
printf(" 电话:");puts(p->tel);
printf(" 邮箱:");puts(p->mail);
printf(" 地址");puts(p->add);
printf(" 邮编:");puts(p->post);
printf(" 查找成功!!!");
printf("");
}
else printf("no people have found!!!");//如果不符合,就输出没有找到
}
}
struct stu *del(struct stu *head) //第四部分:删除结点
{
struct stu *p,*q;
int a;//要删除学生的学号
if(head->next==NULL)// 头文件为空时,输出通讯录为空