用c语言写一份完整的学生信息管理系统 要求: (1)数据结构:创建学生信息结点类型以及学生信息结构体; (2)存储结构:选择单链表存储学生信息。 (3)实现功能(以函数方式实现):学生信息链表创建、学生信息输入、学生信息查询、学生信息修改、学生信息删除、学生信息输出(全部或部分输出)或保存到文件,学生相关排序。

时间: 2023-12-20 17:07:26 浏览: 69
好的,以下是一份使用C语言编写的学生信息管理系统,具体实现了您提出的要求: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct student_info { int id; char name[20]; int age; struct student_info *next; } StudentInfo; StudentInfo *create_student_info(int id, char name[], int age) { StudentInfo *new_student_info = (StudentInfo *)malloc(sizeof(StudentInfo)); new_student_info->id = id; strcpy(new_student_info->name, name); new_student_info->age = age; new_student_info->next = NULL; return new_student_info; } StudentInfo *add_student_info(StudentInfo *head, StudentInfo *new_student_info) { if (head == NULL) { head = new_student_info; } else { StudentInfo *current = head; while (current->next != NULL) { current = current->next; } current->next = new_student_info; } return head; } void print_student_info(StudentInfo *student_info) { printf("%d\t%s\t%d\n", student_info->id, student_info->name, student_info->age); } void print_all_student_info(StudentInfo *head) { StudentInfo *current = head; printf("ID\tName\tAge\n"); while (current != NULL) { print_student_info(current); current = current->next; } } StudentInfo *find_student_info(StudentInfo *head, int id) { StudentInfo *current = head; while (current != NULL) { if (current->id == id) { return current; } current = current->next; } return NULL; } StudentInfo *delete_student_info(StudentInfo *head, int id) { StudentInfo *current = head; if (current == NULL) { printf("There is no student information to delete.\n"); return NULL; } if (current->id == id) { head = current->next; free(current); printf("Delete student information with ID %d successfully.\n", id); return head; } while (current->next != NULL) { if (current->next->id == id) { StudentInfo *temp = current->next; current->next = temp->next; free(temp); printf("Delete student information with ID %d successfully.\n", id); return head; } current = current->next; } printf("There is no student information with ID %d.\n", id); return head; } void modify_student_info(StudentInfo *student_info) { printf("Please enter the new information of the student:\n"); printf("ID: "); scanf("%d", &student_info->id); printf("Name: "); scanf("%s", student_info->name); printf("Age: "); scanf("%d", &student_info->age); } int compare_by_id(StudentInfo *a, StudentInfo *b) { return a->id - b->id; } int compare_by_name(StudentInfo *a, StudentInfo *b) { return strcmp(a->name, b->name); } void sort_student_info(StudentInfo *head, int (*compare)(StudentInfo *a, StudentInfo *b)) { int flag = 1; while (flag) { flag = 0; StudentInfo *current = head; while (current->next != NULL) { if (compare(current, current->next) > 0) { StudentInfo *temp = create_student_info(current->id, current->name, current->age); modify_student_info(current); modify_student_info(current->next); temp->id = current->id; strcpy(temp->name, current->name); temp->age = current->age; current->id = current->next->id; strcpy(current->name, current->next->name); current->age = current->next->age; current->next->id = temp->id; strcpy(current->next->name, temp->name); current->next->age = temp->age; flag = 1; free(temp); } current = current->next; } } } void save_student_info_to_file(StudentInfo *head, char *filename) { FILE *fp = fopen(filename, "w"); if (fp == NULL) { printf("Failed to open file %s.\n", filename); return; } StudentInfo *current = head; while (current != NULL) { fprintf(fp, "%d %s %d\n", current->id, current->name, current->age); current = current->next; } fclose(fp); printf("Save student information to file %s successfully.\n", filename); } StudentInfo *load_student_info_from_file(StudentInfo *head, char *filename) { FILE *fp = fopen(filename, "r"); if (fp == NULL) { printf("Failed to open file %s.\n", filename); return head; } int id, age; char name[20]; while (fscanf(fp, "%d %s %d", &id, name, &age) != EOF) { StudentInfo *new_student_info = create_student_info(id, name, age); head = add_student_info(head, new_student_info); } fclose(fp); printf("Load student information from file %s successfully.\n", filename); return head; } int main() { StudentInfo *head = NULL; while (1) { printf("Please select the function you want to perform:\n"); printf("1. Create student information\n"); printf("2. Input student information\n"); printf("3. Query student information\n"); printf("4. Modify student information\n"); printf("5. Delete student information\n"); printf("6. Output student information\n"); printf("7. Save student information to file\n"); printf("8. Load student information from file\n"); printf("9. Sort student information by ID\n"); printf("10. Sort student information by name\n"); printf("0. Exit\n"); int choice; scanf("%d", &choice); switch (choice) { case 0: printf("Exit successfully.\n"); return 0; case 1: { int id, age; char name[20]; printf("Please enter the student information:\n"); printf("ID: "); scanf("%d", &id); printf("Name: "); scanf("%s", name); printf("Age: "); scanf("%d", &age); StudentInfo *new_student_info = create_student_info(id, name, age); head = add_student_info(head, new_student_info); printf("Create student information successfully.\n"); break; } case 2: { int id, age; char name[20]; printf("Please enter the student information:\n"); printf("ID: "); scanf("%d", &id); printf("Name: "); scanf("%s", name); printf("Age: "); scanf("%d", &age); StudentInfo *new_student_info = create_student_info(id, name, age); head = add_student_info(head, new_student_info); printf("Input student information successfully.\n"); break; } case 3: { int id; printf("Please enter the ID of the student to be queried: "); scanf("%d", &id); StudentInfo *student_info = find_student_info(head, id); if (student_info == NULL) { printf("There is no student information with ID %d.\n", id); } else { print_student_info(student_info); } break; } case 4: { int id; printf("Please enter the ID of the student to be modified: "); scanf("%d", &id); StudentInfo *student_info = find_student_info(head, id); if (student_info == NULL) { printf("There is no student information with ID %d.\n", id); } else { modify_student_info(student_info); printf("Modify student information with ID %d successfully.\n", id); } break; } case 5: { int id; printf("Please enter the ID of the student to be deleted: "); scanf("%d", &id); head = delete_student_info(head, id); break; } case 6: { print_all_student_info(head); break; } case 7: { char filename[50]; printf("Please enter the name of the file to save student information: "); scanf("%s", filename); save_student_info_to_file(head, filename); break; } case 8: { char filename[50]; printf("Please enter the name of the file to load student information: "); scanf("%s", filename); head = load_student_info_from_file(head, filename); break; } case 9: { sort_student_info(head, compare_by_id); printf("Sort student information by ID successfully.\n"); break; } case 10: { sort_student_info(head, compare_by_name); printf("Sort student information by name successfully.\n"); break; } default: printf("Invalid choice.\n"); } } return 0; } ``` 该程序使用单链表存储学生信息,具有创建、输入、查询、修改、删除、输出、保存到文件、从文件加载等功能,并且实现了按ID和姓名排序的功能。您可以根据需要对程序进行修改和扩展。
阅读全文

相关推荐

最新推荐

recommend-type

C语言数组实现学生信息管理系统设计

本文主要介绍了使用C语言数组实现学生信息管理系统的设计,涵盖了学生信息的录入、输出、查找、排序和删除等功能。该系统使用多个数组来存储学生信息,包括学生姓名、数学成绩、英语成绩、计算机成绩和总成绩等。...
recommend-type

C语言实现简单学生选课管理系统

C语言实现简单学生选课管理系统 ...涵盖了结构体、链表、文件读写操作、密码检测函数、输入限制函数、通用函数和系统设计等多个知识点,为读者提供了一个完整的C语言实现学生选课管理系统的解决方案。
recommend-type

C语言实现简单学生学籍管理系统

本文主要介绍了使用C语言实现一个简单的学生学籍管理系统,具有参考价值。本系统包括学生信息的录入、存储和管理等功能。下面将详细介绍该系统的实现过程和代码。 一、系统设计 在设计本系统时,我们需要考虑到...
recommend-type

C语言实现学生选课系统完整版

1. 结构体的应用:本系统使用结构体来描述课程信息和学生信息,演示了结构体的应用在数据存储和管理方面的重要性。 2. 文件输入/输出操作:本系统使用文件输入/输出操作来读取和写入课程信息,演示了文件操作的基本...
recommend-type

C语言实现学生信息管理系统(单链表)

2. 链表的实现:链表是一种常用的数据结构,在学生信息管理系统中,我们使用单链表来存储学生信息。链表的每个节点都包含一个指向下一个节点的指针,这样可以实现对学生信息的动态存储和管理。 3. 文件操作:在学生...
recommend-type

火炬连体网络在MNIST的2D嵌入实现示例

资源摘要信息:"Siamese网络是一种特殊的神经网络,主要用于度量学习任务中,例如人脸验证、签名识别或任何需要判断两个输入是否相似的场景。本资源中的实现例子是在MNIST数据集上训练的,MNIST是一个包含了手写数字的大型数据集,广泛用于训练各种图像处理系统。在这个例子中,Siamese网络被用来将手写数字图像嵌入到2D空间中,同时保留它们之间的相似性信息。通过这个过程,数字图像能够被映射到一个欧几里得空间,其中相似的图像在空间上彼此接近,不相似的图像则相对远离。 具体到技术层面,Siamese网络由两个相同的子网络构成,这两个子网络共享权重并且并行处理两个不同的输入。在本例中,这两个子网络可能被设计为卷积神经网络(CNN),因为CNN在图像识别任务中表现出色。网络的输入是成对的手写数字图像,输出是一个相似性分数或者距离度量,表明这两个图像是否属于同一类别。 为了训练Siamese网络,需要定义一个损失函数来指导网络学习如何区分相似与不相似的输入对。常见的损失函数包括对比损失(Contrastive Loss)和三元组损失(Triplet Loss)。对比损失函数关注于同一类别的图像对(正样本对)以及不同类别的图像对(负样本对),鼓励网络减小正样本对的距离同时增加负样本对的距离。 在Lua语言环境中,Siamese网络的实现可以通过Lua的深度学习库,如Torch/LuaTorch,来构建。Torch/LuaTorch是一个强大的科学计算框架,它支持GPU加速,广泛应用于机器学习和深度学习领域。通过这个框架,开发者可以使用Lua语言定义模型结构、配置训练过程、执行前向和反向传播算法等。 资源的文件名称列表中的“siamese_network-master”暗示了一个主分支,它可能包含模型定义、训练脚本、测试脚本等。这个主分支中的代码结构可能包括以下部分: 1. 数据加载器(data_loader): 负责加载MNIST数据集并将图像对输入到网络中。 2. 模型定义(model.lua): 定义Siamese网络的结构,包括两个并行的子网络以及最后的相似性度量层。 3. 训练脚本(train.lua): 包含模型训练的过程,如前向传播、损失计算、反向传播和参数更新。 4. 测试脚本(test.lua): 用于评估训练好的模型在验证集或者测试集上的性能。 5. 配置文件(config.lua): 包含了网络结构和训练过程的超参数设置,如学习率、批量大小等。 Siamese网络在实际应用中可以广泛用于各种需要比较两个输入相似性的场合,例如医学图像分析、安全验证系统等。通过本资源中的示例,开发者可以深入理解Siamese网络的工作原理,并在自己的项目中实现类似的网络结构来解决实际问题。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧

![L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧](https://img-blog.csdnimg.cn/20191008175634343.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MTYxMTA0NQ==,size_16,color_FFFFFF,t_70) # 1. L2正则化基础概念 在机器学习和统计建模中,L2正则化是一个广泛应用的技巧,用于改进模型的泛化能力。正则化是解决过拟
recommend-type

如何构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,并确保业务连续性规划的有效性?

构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,需要遵循一系列步骤来确保信息系统的安全性和业务连续性规划的有效性。首先,组织需要明确信息安全事件的定义,理解信息安全事态和信息安全事件的区别,并建立事件分类和分级机制。 参考资源链接:[信息安全事件管理:策略与响应指南](https://wenku.csdn.net/doc/5f6b2umknn?spm=1055.2569.3001.10343) 依照GB/T19716标准,组织应制定信息安全事件管理策略,明确组织内各个层级的角色与职责。此外,需要设置信息安全事件响应组(ISIRT),并为其配备必要的资源、
recommend-type

Angular插件增强Application Insights JavaScript SDK功能

资源摘要信息:"Microsoft Application Insights JavaScript SDK-Angular插件" 知识点详细说明: 1. 插件用途与功能: Microsoft Application Insights JavaScript SDK-Angular插件主要用途在于增强Application Insights的Javascript SDK在Angular应用程序中的功能性。通过使用该插件,开发者可以轻松地在Angular项目中实现对特定事件的监控和数据收集,其中包括: - 跟踪路由器更改:插件能够检测和报告Angular路由的变化事件,有助于开发者理解用户如何与应用程序的导航功能互动。 - 跟踪未捕获的异常:该插件可以捕获并记录所有在Angular应用中未被捕获的异常,从而帮助开发团队快速定位和解决生产环境中的问题。 2. 兼容性问题: 在使用Angular插件时,必须注意其与es3不兼容的限制。es3(ECMAScript 3)是一种较旧的JavaScript标准,已广泛被es5及更新的标准所替代。因此,当开发Angular应用时,需要确保项目使用的是兼容现代JavaScript标准的构建配置。 3. 安装与入门: 要开始使用Application Insights Angular插件,开发者需要遵循几个简单的步骤: - 首先,通过npm(Node.js的包管理器)安装Application Insights Angular插件包。具体命令为:npm install @microsoft/applicationinsights-angularplugin-js。 - 接下来,开发者需要在Angular应用的适当组件或服务中设置Application Insights实例。这一过程涉及到了导入相关的类和方法,并根据Application Insights的官方文档进行配置。 4. 基本用法示例: 文档中提到的“基本用法”部分给出的示例代码展示了如何在Angular应用中设置Application Insights实例。示例中首先通过import语句引入了Angular框架的Component装饰器以及Application Insights的类。然后,通过Component装饰器定义了一个Angular组件,这个组件是应用的一个基本单元,负责处理视图和用户交互。在组件类中,开发者可以设置Application Insights的实例,并将插件添加到实例中,从而启用特定的功能。 5. TypeScript标签的含义: TypeScript是JavaScript的一个超集,它添加了类型系统和一些其他特性,以帮助开发更大型的JavaScript应用。使用TypeScript可以提高代码的可读性和可维护性,并且可以利用TypeScript提供的强类型特性来在编译阶段就发现潜在的错误。文档中提到的标签"TypeScript"强调了该插件及其示例代码是用TypeScript编写的,因此在实际应用中也需要以TypeScript来开发和维护。 6. 压缩包子文件的文件名称列表: 在实际的项目部署中,可能会用到压缩包子文件(通常是一些JavaScript库的压缩和打包后的文件)。在本例中,"applicationinsights-angularplugin-js-main"很可能是该插件主要的入口文件或者压缩包文件的名称。在开发过程中,开发者需要确保引用了正确的文件,以便将插件的功能正确地集成到项目中。 总结而言,Application Insights Angular插件是为了加强在Angular应用中使用Application Insights Javascript SDK的能力,帮助开发者更好地监控和分析应用的运行情况。通过使用该插件,可以跟踪路由器更改和未捕获异常等关键信息。安装与配置过程简单明了,但是需要注意兼容性问题以及正确引用文件,以确保插件能够顺利工作。