搜索资源列表
STUDENTMANAGE
- 这是我一个用双向链表实现的学生信息管理DOS版 可以插入 查询 编辑 排序 删除 保存 显示相关信息-a two-way linked list with the students to achieve information management DOS version can be plugged into inquiries ranking editors deleted to preserve relevant information shows
tuffshu
- 一个小型图书管理系统。用链表存储图书记录内容。能实现图书记录的添加,删除,查询,排序,修改,保存到文件和从文件中读取等功能。 -a small library management system. Chain store with the contents record books. Achieve the record books to add, delete, query, sort, modify, and the preservation of the document from t
0502_31
- c语言的课程设计报告,关于链表操作和查找与排序-c language curriculum design, report on chain operations and search and sorting
051150032
- 学生基本注册信息管理系统,(1)用户名与密码的输入,再进行登陆验证,连续登录三次不成功,退出。 (2)建立一个学生基本注册信息的链表。 (3)选择要进行的操作:a、注册,建立一个链表的新结点,并以 新结点作为链表的表头 b、查询,分为按学号、姓名、性别、年龄、专业、班级和年级查询 ,并显示所查到的信息 c、修改,用新的信息替换以前的信息 d、删除,为了保护链表的表头,用一个结构类似堆栈的指针实现,此处排除了删除栈顶元素的特殊情况 e、排序,用起泡排序算法实现将
student
- 学生管理系统,是一个纯c语言程序,用vc++编译器进行编译。使用链表原理,没有数据库,数据储存在内存里,程序结束则数据消失。功能包括学生信息添加,删除,查找,排序。包含源码和可执行程序。
学校人员管理系统
- 设计并实现一个简单的大学人员信息管理系统。对各类人员信息进行管理,包括增加、删除、查询、修改、排序和统计等基本功能。用面向对象方法设计一个异质链表,该链表用来存储大学中各类人员的信息。-design and implement a simple university personnel information management system. Categories of information management, including add, delete, inquiry, modif
学籍管理系统C语言版
- 学籍管理系统!利用C语言实现! 在构思基本模块时,订立了“读取文件到内存形成链表,对链表的操作,将内存的链表内容保存到文件”三大基本块。 读取文件:在main函数里完成。原理是,先检查文件指针是否在末尾,若否,则在内存开辟一个单位长度,在文件中读取单位长度数据入该空间中,并彼此构成链表。采取带参数的主函数,以保证保存文件的多样性。 对链表的操作:可分为插入(建立),删除,查找,修改,排序。五大基本功能。分别用五个函数完成。这里不一一描述。其中,删除,查找,修改都是要用到查找一个数据的操作。所以,
Car-Sales-Management-System-3.2
- 用循环链表建立的简单的汽车销售管理系统。可以输入、删除、排序记录,读取、保存文件。-Established with a simple circular list of car sales management system. You can enter /delete/sort records, read/save files.
xsb
- 这是一个用visual C++开发的学生成绩管理系统,适用于C++初学者,采用命令行界面方式。主要功能有学生成绩的新建、添加、删除、排序等,为了提高效率,程序没有使用链表,而采用了了数组实现。-This is a visual C development of student achievement management system, applicable to C beginners, using command-line interface mode. The main f
studentmaster
- 学生成绩管理系统 链表编写 可实现输入 查找 排序 删除 储存 读取 求平均数等功能-Student achievement management system for the preparation of list can be sorted to find the realization of input for the average reader to delete the storage functions
xuejiguanli
- 用C语言实现的学籍管理系统。通过链表操作数据。可实现查找、添加、删除、排序。-With the C language implementation of the student status management system. Operational data through the linked list. Can be realized to find, add, delete, sort.
StudentManage
- 学生成绩管理系统,数据结构实现,用链表实现对其编辑操作,除了基本添加删除功能,另有排序打印等功能-Student performance management systems, data structure implementation, using linked list implementation of its edits, in addition to the basic add delete functions, while functions such as sorting prin
zhangyu
- 该程序是一个简单的职工管理系统;用C++语言编写的;由链表实现其具有的功能:具有查找、删除、插入、排序等功能。本程序有许多不足甚至错误之处;诚请各位多多指教:谢谢!!QQ:718290025-The program is a simple employee management system use written in C++ from the list has to achieve its function: have to find, delete, insert, sort, and
stu_man_sys
- 该学生档案管理系统是运用链表的结构建立的,能够创建和销毁档案库,以学号查询、插入或删除某个学生,也可按学号进行排序,功能齐全,自己开发,VC6.0上已编译通过并进行相关测试,希望能给大家带来帮助并请斧正!-The student records management system is established using the structure of the list, to create and destroy the archives to student number query, i
goodmanagementsystem
- 作为商品的管理系统,此系统需要能够实现一些基本的管理信息功能。比如:商品的录入,商品的查找,商品的删除,商品的修改,商品的分类,商品的排序,商品的插入,商品的保存等等。在我的程序当中,上述的各项功能中除了“商品的分类”,其它基本功能都得到了实现。而这些功能的实现又都是依托于商品变量的,所以能否顺利实现商品变量的建立,保存和调用,成为此程序能否成功的关键点。而建立链表,可以顺利实现这些功能。-This software is developed in order to manage goods
1
- 简单学生信息管理系统,要求如下: (1)学生信息包括学号、姓名、生日、语文成绩、数学成绩、英语成绩。 (2)内存中以链表形式实现对学生数据的管理。 (3)可以查看所有学生信息 (4)可以添加一个学生信息 (5)可以删除一个学生信息 (6)可以根据学号修改一个学生信息 (7)可以将学生信息保存到磁盘文件 (8)可以从文件中载入学生信息 (9)可以按学号对学生信息进行排序 (10)完成一些学生信息的基
payroll_system
- 开发一个简单的工资系统:1)输入、显示工资信息(包括:员工号、姓名、岗位工资、补贴总额、代扣总额);2)输出应发工资的最高、最低和平均值;3)按员工号排序后输出信息;4)按员工号查找并输出其信息,也可删除查到的员工。要求:1)具有良好的风格和简单的界面;2)利用函数来实现各模块;3)用链表实现。 -Develop a simple payroll system: 1) input, display payroll information (including: staff number, n
Linklist
- 建立一个动态链表,将学生数据(学号,成绩)存入链表结构中,实现链表的访问(求学生成绩的平均分,找到最高分,最低分,将其数据输出)。删除指定学号的学生数据,对学生数据进行排序,分别在链表头部,中间,末尾插入学生数据。-To establish a dynamic linked list, students and student id data (deposited in the list, realize the list of access (the average student achie
student
- 用C编写的简单的学生成绩管理系统,使用链表结构,具有添加,删除,修改,排序等功能-C prepared by the simple use of student achievement management system, the use of linked list structure, with add, delete, modify, sort, etc.
student--system
- 学生管理系统,主要是数据结构综合运用,主要有结构体还有一些排序算法,至于链表插入删除还有文件读取都有涉及-Student management system, mainly the integrated use of data structures, there are structures there are some sorting algorithms, as well as delete the file read into the list are involved