搜索资源列表
PX
- oid Reset() //重置\"次数\", 即比较与移动的效率统计 int BubbleSort(int length, int ls[]) //冒泡排序 int InsertSort(int length, int ls[]) //插入排序 int SelectSort(int length, int ls[]) //选择排序 int QuickSort(int length, int ls[]) //快速排序 int ShellSort(int length, int
scoremanage
- 1、整个系统均用C语言实现; 2、利用指针、链表来实现学生成绩的数据结构设计; 3、系统具有输入、显示、查询、删除、排序、插入,保存、读取基本功能; 4、系统的各个功能模块都用函数的形式来实现; 5、可以将学生成绩信息保存在文件中。 6、可以将学生信息从文件中读取出来。-one, the entire system will be used C language; 2, the use of indicators, Listless to achieve student pe
as
- 本程序首先对数组a中的10个数从大到小排序并输出排序结果。然后输入要插入的整数n。再用一个for语句把n和数组元素逐个比较,如果发现有n>a[i]时,则由一个内循环把i以下各元素值顺次后移一个单元。后移应从后向前进行(从a[9]开始到a[i]为止)。后移结束跳出外循环。插入点为i,把n赋予a[i]即可。 如所有的元素均大于被插入数,则并未进行过后移工作。此时i=10,结果是把n赋于a[10]。最后一个循环输出插入数后的数组各元素值。 -This procedure first arra
shunxubiao
- 顺序表的建立~排序~删除~插入~遍历~判断表中元素是否对称~实现把该表中所有奇数排在偶数之前,即表的前面为奇数,后面为偶数-The establishment of the order of the table ~ sort ~ delete ~ insert ~ traverse the table to determine whether the element ~ ~ achieve the symmetry of the table, even before all the odd ra
tree
- 平衡二叉树:插入结点 在平衡二叉排序树BBST上插入一个新数据元素e 删除结点 删除结点过程与插入结点的操作类似,基本过程是:平衡二叉树,找到要删除的结点,删除一个结点,变成二叉树,旋转,变回平衡二叉树。 查找 把给定值与根结点作比较,若给定值大于根结点则查找其右子树,小于则查找其左子树,如此类推。 -Insertion node in the balanced binary sort tree BBST insert a new data element e remov
CC.doc
- 简单的职工管理系统1.问题描述述 对单位的职工进行管理,包括插入、删除、查找、排序等功能。 -Simple employee management system 1. The problem described above to manage the unit' s staff, including insert, delete, search, sort, and so on.
1
- c语言程序,简单的学生成绩管理系统。拥有插入,删除,排序等功能-c language program, student achievement management system. With insert, delete, sort, and other functions
1
- 先采用选择法,将学生成绩从高到低进行排序,再输入一个学生的成绩,将此成绩按照排序规律插入已排好序的学生成绩数组,最后将排好序的成绩单进行反序存放。-First selection method, the student scores high to low sort, and then enter a student s grades, this insert the sorted array of student achievement results sorted according to
A2-Turn_In-2
- 各种排序方法的实现, bubble, quick, insert-implement SEVERAL CLASSICAL SORT ARGORITHM
insert
- 插入排序法对随机产生的10000个是进行顺序排序,并输出排序结果-10000 insertion sort of randomly generated sequence sort, and sort the output results
insert-merge-quicksort
- 插入排序,合并排序,快速排序法对随机产生的10000个是进行顺序排序,并输出排序结果-Insertion sort, merge sort, quick sort on 10,000 randomly generated sequence sorting and output sort results
Graph
- 直接插入排序(Straight Insertion Sorting)的基本思想是:把n个待排序的元素看成为一个有序表和一个无序表,开始时有序表中只包含一个元素,无序表中包含有n-1个元素,排序过程中每次从无序表中取出第一个元素,将它插入到有序表中的适当位置,使之成为新的有序表,重复n-1次可完成排序过程。 -The basic idea is to direct insertion sort (Straight Insertion Sorting): n be sorted elements
123
- 包含浏览、追加、删除、查询、插入、排序、调用的电子通讯录管理系统-The electronic address book that contains the browser, append, delete, query, insert, sort, call management system
students
- 设计内容: 试设计一学生信息管理系统。学生信息包括:学号,姓名,年龄,性别,出生年月,地址,电话,E-mail等。 设计功能: 1、系统以菜单方式工作 2、学生信息录入功能(学生信息用文件保存) 3、学生信息的编辑功能(插入、删除、修改) 4、学生信息浏览功能(学号,姓名,等排序输出)。 5、学生信息查询功能(学号,姓名,电话,E-mail查询,提供模糊查询的功能)-Design content: test the design of a student inform
linker
- 建立链表信息,链表的建立,插入,删除和排序源代码。-Establishment of the list of information, the establishment of the list, insert, delete and sort the source code.
the-simple-operation-to-link
- 对单链表的一些简单基本操作,如链表的建立,元素的删除,元素的插入,链表的排序,链表的逆置等。 -some simple operation to the link,such as creat a link ,insert a number,delete a number,sort the link ,reverse the link ,etc
tree
- 二叉排序树的查找、插入、删除、建立算法的思想及程序实现-Find a binary sort tree, insert, delete, create ideas and programs to achieve the algorithm
dan
- 单链表的构造,排序,插入,删除,查找,和两个有序序列的合并-The combined singly linked list structure, sort, insert, delete, search, and two ordered sequences
Student achievement management
- 提供一个界面来调用各个功能,实现查询、排序、插入、删除诸功能。(Provide an interface to call each function, query, sort, insert, delete functions.)
Простые сортировки
- The program realizes simple sort methods (insert, select) in C# console application.