contact.h
建立结构体,声明函数
#pragma once
#include
#include
#include
//类型的声明
#define Max 1000
#define Name_Max 20
#define Sex_Max 5
#define Tele_Max 12
#define add_Max 30
//这样使下面的选择代码更有可读性
enum Option {
EXIT,
ADD,
DEL,
SEARCH,
MODIFY,
SORT,
PRINT,
CLEAR
};
typedef struct PeoInfo {
char name[Name_Max];
char sex[Sex_Max];
int age;
char tele[Tele_Max];
char add[add_Max];
}PeoInfo;
//通讯录结构体,通过封装可以更好的传参,完成增删改查
typedef struct Contact {
//创建10000人信息
PeoInfo data[Max];
//个数
int sz;
}Contact;
//函数声明
//增加
void AddContact(Contact* pc);
//初始化
void InitContact(Contact* pc);
//打印
void PrintContact(const Contact* pc);
//删除指定联系人
void DelContact(Contact* pc);
//查找联系人
void SearchContact(const Contact* pc);
//修改指定联系人
void ModifyContact(Contact* pc);
//按名字进行排序
void SortContact(Contact* pc);
//清空通讯表
void ClearContact(Contact* pc);
contact.c函数实现
#define _CRT_SECURE_NO_WARNINGS
#include "contact.h"
//增加信息
void AddContact(Contact* pc) {
assert(pc);
//录入信息
if (pc -> sz == Max) {
printf("通讯录已满,无法添加\n");
return;
}
printf("请输入名字:》\n");
scanf("%s", pc->data[pc->sz].name);
printf("请输入年龄:》\n");
scanf("%d", &(pc->data[pc->sz].age));//记得取地址
printf("请输入性别:》\n");
scanf("%s", pc->data[pc->sz].sex);
printf("请输入电话:》\n");
scanf("%s", pc->data[pc->sz].tele);
printf("请输入地址:》\n");
scanf("%s", pc->data[pc->sz].add);
pc->sz++;
printf("添加成功!\n");
}
//初始化
void InitContact(Contact* pc) {//通过指针找到地址,再找到里面的成员进行计算大小而不是计算地址大小
assert(pc);
pc->sz = 0;
memset(pc->data,0,sizeof(pc->data));//实在是妙!没想到用memset
}
void PrintContact(const Contact* pc) {
assert(pc);
int i = 0;
printf(" % -10s % -5s % -5s % -12s % -10s\n","姓名","年龄", "性别", "电话","地址");
for (i = 0; i < pc->sz; i++) {
printf("%-10s %-5d %-5s %-12s %-10s\n",pc->data[i].name, pc->data[i].age, pc->data[i].sex, pc->data[i].tele, pc->data[i].add);
}
}
//找到返回下标,否则-1
int FindByName(const Contact* pc, char name[]) {
assert(pc);
int i = 0;
for (i = 0; i < pc->sz; i++) {
if (strcmp(pc->data[i].name, name) == 0) {
return i;
}
}
return -1;
}
void DelContact(Contact* pc) {
assert(pc);
if (pc->sz == 0) {
printf("通讯录已经空了!\n");
return;
}
//找人
char name[Name_Max] = { 0 };
printf("请输入要删除的人:》\n");
scanf("%s", name);
int pos=FindByName(pc, name);
if (pos == -1) {
printf("不存在!\n");
}
int j = 0;
if (pos != pc->sz - 1) {
for (j = pos; j < pc->sz - 1; j++) {
pc->data[j] = pc->data[j + 1];
}
}
pc->sz--;
printf("删除成功!\n");
}
void SearchContact(const Contact* pc) {
assert(pc);
//找人
char name[Name_Max] = { 0 };
printf("请输入要查找的人:》\n");
scanf("%s", name);
int pos = FindByName(pc, name);
if (pos == -1) {
printf("不存在!\n");
}
printf(" % -10s % -5s % -5s % -12s % -10s\n", "姓名", "年龄", "性别", "电话", "地址");
printf("%-10s %-5d %-5s %-12s %-10s\n", pc->data[pos].name, pc->data[pos].age, pc->data[pos].sex, pc->data[pos].tele, pc->data[pos].add);
}
void ModifyContact(Contact* pc) {
assert(pc);
printf("输入要修改的人:>");
char name[Name_Max] = { 0 };
scanf("%s", name);
int pos = FindByName(pc, name);
if (pos == -1) {
printf("不存在!\n");
}
printf("请输入年龄:》\n");
scanf("%d", &(pc->data[pos].age));//记得取地址
printf("请输入性别:》\n");
scanf("%s", pc->data[pos].sex);
printf("请输入电话:》\n");
scanf("%s", pc->data[pos].tele);
printf("请输入地址:》\n");
scanf("%s", pc->data[pos].add);
printf("修改成功!\n");
}
static int cmp(const void* p1, const void* p2) {
return strcmp(((PeoInfo*)p1)->name, ((PeoInfo*)p2)->name);
}
void SortContact(Contact* pc) {
assert(pc);
if (pc->sz == 0) {
printf("通讯表为空!\n");
}
qsort(pc->data,pc->sz,sizeof(pc->data[0]),cmp);
printf("排序成功!\n");
}
void ClearContact(Contact* pc) {
assert(pc);
if (pc->sz == 0) {
printf("通讯表为空,无需清空!\n");
return;
}
//初始化通讯录
InitContact(pc);
printf("清空通讯录!\n");
}
test.c
#define _CRT_SECURE_NO_WARNINGS
#include "contact.h"
void menu() {
printf("---------------------\n");
printf("---1.add---2.del-----\n");
printf("---3.serch 4.modify--\n");
printf("---5.sort- 6.printf --\n");
printf("---7.clear 0.exit----\n");
printf("---------------------\n");
}
void test() {
int input = 0;
//创建通讯录
Contact con;
//初始化
InitContact(&con);
do {
menu();
printf("请选择:》\n");
scanf("%d", &input);
switch (input) {
case ADD:
AddContact(&con);
break;
case DEL:
DelContact(&con);
break;
case SEARCH:
SearchContact(&con);
break;
case MODIFY:
ModifyContact(&con);
break;
case SORT:
SortContact(&con);
break;
case PRINT:
PrintContact(&con);
break;
case CLEAR:
ClearContact(&con);
break;
case EXIT:
printf("退出通讯录\n");
break;
default:
printf("选择错误\n");
break;
}
} while(input);
}
int main() {
test();
return 0;
}
实现结果:
面板:
增加:
删除:
修改:
排序:
清空:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)