利用线性表实现一个通讯录管理,通信录的数据格式如下: struct datatype { int
时间: 2023-12-25 22:01:52 浏览: 128
通讯录管理是一种常见的数据操作,可以通过线性表来实现。通讯录中的每个联系人都有一些基本信息,如姓名、电话号码、地址等。
我们可以利用线性表来存储通讯录中的联系人信息。可以使用结构体来定义通讯录中每个联系人的数据格式,例如:
```
struct Contact {
string name;
string phone;
string address;
// 其他信息
};
```
然后,可以使用数组、链表等线性表的数据结构来存储这些联系人信息。在内存中,可以创建一个数组来保存通讯录中的联系人数据,也可以使用链表来动态地添加、删除联系人信息。
通讯录管理包括添加联系人、删除联系人、查找联系人、修改联系人信息等操作。利用线性表来实现通讯录管理可以更方便地进行这些操作。例如,可以在数组中添加新的联系人信息,也可以在链表中删除某个联系人的信息。
另外,利用线性表可以实现不同的查找方式,例如可以按照姓名首字母进行排序,也可以根据电话号码进行快速查找。这些功能可以通过线性表的不同实现方式来实现。
总之,利用线性表可以方便地实现一个通讯录管理系统,通过定义合适的数据格式和选择合适的线性表实现方式,可以更高效地管理通讯录中的联系人信息。
相关问题
应用实验 利用线性表实现一个通讯录管理,通讯录的数据格式如下: struct DataType int ID; //编号 char name[10]; //姓名 char ch; //性别 char phone[13]; //电话 char addr[31]; //地址 要求: ·实现通讯录的建立、增加、删除、修改、查询等功能; ·能够实现简单的菜单交互,即可以根据用户输入的命令,选择不同的操作; ·能够保存每次更新的数据(选做); ·能够进行通讯录分类,比如班级类、好友类、黑名单等(选做); ·编写main()函数测试线性表的正确性。
可以使用以下代码实现通讯录管理:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_SIZE 100
struct DataType {
int ID;
char name[10];
char ch;
char phone[13];
char addr[31];
};
typedef struct {
DataType data[MAX_SIZE];
int length;
} List;
void initList(List *list) {
list->length = 0;
}
int add(List *list, DataType data) {
if (list->length >= MAX_SIZE) {
return 0;
}
list->data[list->length] = data;
list->length++;
return 1;
}
int removeById(List *list, int id) {
int i, j;
for (i = 0; i < list->length; i++) {
if (list->data[i].ID == id) {
for (j = i; j < list->length - 1; j++) {
list->data[j] = list->data[j + 1];
}
list->length--;
return 1;
}
}
return 0;
}
int updateById(List *list, int id, DataType newData) {
int i;
for (i = 0; i < list->length; i++) {
if (list->data[i].ID == id) {
list->data[i] = newData;
return 1;
}
}
return 0;
}
int searchById(List *list, int id, DataType *result) {
int i;
for (i = 0; i < list->length; i++) {
if (list->data[i].ID == id) {
*result = list->data[i];
return 1;
}
}
return 0;
}
void printList(List *list) {
int i;
for (i = 0; i < list->length; i++) {
printf("%d %s %c %s %s\n", list->data[i].ID, list->data[i].name, list->data[i].ch, list->data[i].phone, list->data[i].addr);
}
}
void menu() {
printf("1. Add\n");
printf("2. Remove\n");
printf("3. Update\n");
printf("4. Search\n");
printf("5. Print\n");
printf("6. Exit\n");
}
int main() {
List list;
initList(&list);
int choice;
do {
menu();
printf("Enter your choice: ");
scanf("%d", &choice);
switch (choice) {
case 1: {
DataType data;
printf("Enter ID: ");
scanf("%d", &data.ID);
printf("Enter name: ");
scanf("%s", data.name);
printf("Enter gender: ");
scanf(" %c", &data.ch);
printf("Enter phone: ");
scanf("%s", data.phone);
printf("Enter address: ");
scanf("%s", data.addr);
if (add(&list, data)) {
printf("Add success!\n");
} else {
printf("Add failed! The list is full.\n");
}
break;
}
case 2: {
int id;
printf("Enter ID: ");
scanf("%d", &id);
if (removeById(&list, id)) {
printf("Remove success!\n");
} else {
printf("Remove failed! The ID does not exist.\n");
}
break;
}
case 3: {
int id;
printf("Enter ID: ");
scanf("%d", &id);
DataType newData;
printf("Enter new name: ");
scanf("%s", newData.name);
printf("Enter new gender: ");
scanf(" %c", &newData.ch);
printf("Enter new phone: ");
scanf("%s", newData.phone);
printf("Enter new address: ");
scanf("%s", newData.addr);
if (updateById(&list, id, newData)) {
printf("Update success!\n");
} else {
printf("Update failed! The ID does not exist.\n");
}
break;
}
case 4: {
int id;
printf("Enter ID: ");
scanf("%d", &id);
DataType result;
if (searchById(&list, id, &result)) {
printf("%d %s %c %s %s\n", result.ID, result.name, result.ch, result.phone, result.addr);
} else {
printf("Search failed! The ID does not exist.\n");
}
break;
}
case 5: {
printList(&list);
break;
}
case 6: {
printf("Goodbye!\n");
break;
}
default: {
printf("Invalid choice!\n");
break;
}
}
} while (choice != 6);
return 0;
}
C++应用实验 利用线性表实现一个通讯录管理,通讯录的数据格式如下: struct DataType int ID; //编号 char name[10]; //姓名 char ch; //性别 char phone[13]; //电话 char addr[31]; //地址 要求: ·实现通讯录的建立、增加、删除、修改、查询等功能; ·能够实现简单的菜单交互,即可以根据用户输入的命令,选择不同的操作; ·能够保存每次更新的数据(选做); ·能够进行通讯录分类,比如班级类、好友类、黑名单等(选做); ·编写main()函数测试线性表的正确性。
以下是一个简单的通讯录管理程序的实现,使用线性表来存储通讯录数据:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_NAME_LEN 10
#define MAX_PHONE_LEN 13
#define MAX_ADDR_LEN 31
struct DataType {
int ID;
char name[MAX_NAME_LEN];
char ch;
char phone[MAX_PHONE_LEN];
char addr[MAX_ADDR_LEN];
};
typedef struct Node {
struct DataType data;
struct Node *next;
} Node;
Node *createList() {
Node *head = (Node *)malloc(sizeof(Node));
head->next = NULL;
return head;
}
void destroyList(Node *head) {
Node *p = head->next;
while (p != NULL) {
Node *q = p->next;
free(p);
p = q;
}
free(head);
}
void printList(Node *head) {
Node *p = head->next;
while (p != NULL) {
printf("%d %s %c %s %s\n", p->data.ID, p->data.name, p->data.ch, p->data.phone, p->data.addr);
p = p->next;
}
}
Node *findNode(Node *head, int ID) {
Node *p = head->next;
while (p != NULL) {
if (p->data.ID == ID) {
return p;
}
p = p->next;
}
return NULL;
}
void insertNode(Node *head, struct DataType data) {
Node *p = (Node *)malloc(sizeof(Node));
p->data = data;
p->next = head->next;
head->next = p;
}
void deleteNode(Node *head, int ID) {
Node *p = head->next;
Node *prev = head;
while (p != NULL) {
if (p->data.ID == ID) {
prev->next = p->next;
free(p);
return;
}
prev = p;
p = p->next;
}
}
void updateNode(Node *head, int ID, struct DataType data) {
Node *p = findNode(head, ID);
if (p != NULL) {
p->data = data;
}
}
void queryNode(Node *head, char *name) {
Node *p = head->next;
while (p != NULL) {
if (strcmp(p->data.name, name) == 0) {
printf("%d %s %c %s %s\n", p->data.ID, p->data.name, p->data.ch, p->data.phone, p->data.addr);
}
p = p->next;
}
}
int main() {
Node *head = createList();
while (1) {
printf("1. Add a contact\n");
printf("2. Delete a contact\n");
printf("3. Update a contact\n");
printf("4. Query a contact\n");
printf("5. Print all contacts\n");
printf("6. Exit\n");
printf("Enter your choice: ");
int choice;
scanf("%d", &choice);
if (choice == 1) {
struct DataType data;
printf("Enter ID: ");
scanf("%d", &data.ID);
printf("Enter name: ");
scanf("%s", data.name);
printf("Enter gender (M/F): ");
scanf(" %c", &data.ch);
printf("Enter phone number: ");
scanf("%s", data.phone);
printf("Enter address: ");
scanf("%s", data.addr);
insertNode(head, data);
} else if (choice == 2) {
int ID;
printf("Enter ID: ");
scanf("%d", &ID);
deleteNode(head, ID);
} else if (choice == 3) {
int ID;
printf("Enter ID: ");
scanf("%d", &ID);
struct DataType data;
printf("Enter name: ");
scanf("%s", data.name);
printf("Enter gender (M/F): ");
scanf(" %c", &data.ch);
printf("Enter phone number: ");
scanf("%s", data.phone);
printf("Enter address: ");
scanf("%s", data.addr);
updateNode(head, ID, data);
} else if (choice == 4) {
char name[MAX_NAME_LEN];
printf("Enter name: ");
scanf("%s", name);
queryNode(head, name);
} else if (choice == 5) {
printList(head);
} else if (choice == 6) {
break;
} else {
printf("Invalid choice\n");
}
}
destroyList(head);
return 0;
}
注意,这个程序只是一个简单的示例,还有很多需要改进的地方,比如输入的合法性检查、数据的持久化存储等。
阅读全文