用c语言写通讯录信息管理系统 要求: (1)数据结构:通讯人员信息结点类型以及相应的结构体; (2)存储结构:选择单链表存储通讯人员信息。 (3)实现功能(以函数方式实现):通讯信息链表创建、通讯信息输入、通讯信息查询、通讯信息修改、通讯信息删除、通讯信息排序、输出或保存到文件。 附:通讯录信息包括:编号、姓名、电话、通信地址、EMAIL等。
时间: 2023-08-02 13:07:21 浏览: 94
好的,这是一个很常见的 C 语言编程实践。我可以给你提供一个大致的思路:
1. 定义通讯人员信息结构体,包括编号、姓名、电话、通信地址、EMAIL等字段。
```
typedef struct ContactInfo {
int id;
char name[20];
char phone[20];
char address[50];
char email[50];
struct ContactInfo* next;
} ContactInfo;
```
2. 定义通讯信息链表的数据结构,即链表头结点。
```
typedef struct ContactList {
ContactInfo* head;
} ContactList;
```
3. 实现通讯信息链表创建函数,即初始化链表头结点。
```
void createContactList(ContactList* list) {
list->head = NULL;
}
```
4. 实现通讯信息输入函数,即在链表末尾添加一个通讯人员信息结点。
```
void addContact(ContactList* list, int id, char* name, char* phone, char* address, char* email) {
ContactInfo* newContact = (ContactInfo*)malloc(sizeof(ContactInfo));
newContact->id = id;
strcpy(newContact->name, name);
strcpy(newContact->phone, phone);
strcpy(newContact->address, address);
strcpy(newContact->email, email);
newContact->next = NULL;
if (list->head == NULL) {
list->head = newContact;
} else {
ContactInfo* p = list->head;
while (p->next != NULL) {
p = p->next;
}
p->next = newContact;
}
}
```
5. 实现通讯信息查询函数,即根据姓名或电话查询通讯人员信息。
```
void searchContact(ContactList* list, char* keyword) {
ContactInfo* p = list->head;
while (p != NULL) {
if (strstr(p->name, keyword) || strstr(p->phone, keyword)) {
printf("%d\t%s\t%s\t%s\t%s\n", p->id, p->name, p->phone, p->address, p->email);
}
p = p->next;
}
}
```
6. 实现通讯信息修改函数,即根据编号修改通讯人员信息。
```
void updateContact(ContactList* list, int id, char* name, char* phone, char* address, char* email) {
ContactInfo* p = list->head;
while (p != NULL) {
if (p->id == id) {
strcpy(p->name, name);
strcpy(p->phone, phone);
strcpy(p->address, address);
strcpy(p->email, email);
break;
}
p = p->next;
}
}
```
7. 实现通讯信息删除函数,即根据编号删除通讯人员信息。
```
void deleteContact(ContactList* list, int id) {
ContactInfo* p = list->head;
if (p->id == id) {
list->head = p->next;
free(p);
return;
}
while (p->next != NULL) {
if (p->next->id == id) {
ContactInfo* tmp = p->next;
p->next = tmp->next;
free(tmp);
return;
}
p = p->next;
}
}
```
8. 实现通讯信息排序函数,即根据姓名或电话排序通讯人员信息。
```
void sortContact(ContactList* list, char* keyword) {
ContactInfo* p = list->head;
int count = 0;
while (p != NULL) {
count++;
p = p->next;
}
ContactInfo** arr = (ContactInfo**)malloc(count * sizeof(ContactInfo*));
p = list->head;
for (int i = 0; i < count; i++) {
arr[i] = p;
p = p->next;
}
for (int i = 0; i < count - 1; i++) {
for (int j = i + 1; j < count; j++) {
if (strcmp(keyword == "name" ? arr[i]->name : arr[i]->phone, keyword == "name" ? arr[j]->name : arr[j]->phone) > 0) {
ContactInfo* tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
}
}
}
list->head = arr[0];
for (int i = 0; i < count - 1; i++) {
arr[i]->next = arr[i + 1];
}
arr[count - 1]->next = NULL;
free(arr);
}
```
9. 实现输出或保存到文件函数,即将通讯人员信息输出到屏幕或保存到文件中。
```
void printContactList(ContactList* list) {
ContactInfo* p = list->head;
while (p != NULL) {
printf("%d\t%s\t%s\t%s\t%s\n", p->id, p->name, p->phone, p->address, p->email);
p = p->next;
}
}
void saveContactList(ContactList* list, char* filename) {
FILE* fp = fopen(filename, "w");
ContactInfo* p = list->head;
while (p != NULL) {
fprintf(fp, "%d\t%s\t%s\t%s\t%s\n", p->id, p->name, p->phone, p->address, p->email);
p = p->next;
}
fclose(fp);
}
```
这就是一个简单的通讯录信息管理系统的实现。你可以根据实际需求进行修改和优化。
阅读全文