搜索资源列表
0305111
- 很好的一个DD。。 能够进行快速排序...利用C语言实现,8种排序算法! 例如:插入排序、快速排序、选择排序、冒泡排序、堆排序、希尔排序、归并排序、基数排序!-good a DD. . To conduct rapid sequencing ... use C language, eight algorithm! For example : insert sequencing, Quick Sort, select, in order of Bubble Sort, heap sort, Hil
InsertionSort
- 插入排序的VC实现-Insertion Sort of VC.
paixu
- 输入若干组长度各异的待排序列,分别用快速排序算法和改进的枢轴元素三者取中算法对待排序列进行排序,当待排子序列长度已小于 20时,改用直接插入排序,利用时间函数验证三者取中算法在效率上的提高。(提示: 待排序列的长度一般应为 5000 以上)
newsservice
- 通讯录要求记入姓名,性别,地址,电话,编号 1.建立链表 2.按编号排序 3.按姓名查找 4.按编号查找 5.按姓名删除 6.按编号删除 7.按编号插入 8.输出 0.退出
hill_sorting
- 希尔排序算法: 基本思想:将整个无序序列分割成若干小的子序列分别进行插入排序。 序列分割方法:将相隔某个增量h的元素构成一个子序列。在排序过程中,逐次减小这个增量,最后当h减到1时,进行一次插入排序,排序就完成。增量序列一般采用:ht=2t-1,1≤t≤[log2n],其中n为待排序序列的长度。
sort_vector
- 此程序是排序,用了vector类,并封装了发泡,快速,插入和选择排序-ranking, with the vector categories, and the packaging foam, fast, and inserted SELECTION SORT
sort
- 各种排序算法冒泡,选择,中值,希尔,归并,插入-Various sorting algorithm bubble, selection, value, Hill, merging, insert
testlist
- 线性表常用子函数,插入,删除,排序,逆序,归并,等等.-Linear form used subroutine, insert, delete, sort, reverse, merging, and so on.
student_management
- 学生管理系统 有录入 查询信息(按学号) 排序 插入 更新 删除 保存到文件的功能 -Student management system has input query information (by student number) to sort insert update delete saved to a file function
Llist.tar
- 使用双向循环链表对学生信息进行管理(插入,排序,查找等)-Use a two-way circular list of student information management (insert, sort, search, etc.)
InsertionSort
- windows下c++实现插入排序,并分析最坏情况下比较和交换的次数-windows c++ implementation under the insertion sort, and analyze the worst case number of comparison and exchange
jinchengkongzhi
- 进程控制实验 每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。 本实验要求用C语言编程实现创建n个进程的创建函数creat;根据进程的优先数把就绪进程插入就绪队列的排序函数sort;打印就绪进程PCB信息的函数check;以及进程的撤销函数destroy。 -
linear
- 包括线性表的插入、删除、排序、查找的相关操作-Include linear table insert, and delete, sorting, find the relevant operation
cpp
- 基数排序 计数排序 桶排序 插入排序 打印字符串-Radix Sort counting sort bucket sort insertion sort, print a string
sort
- 在排序算法中有一种排序算法插入排序,是把待排序的数分成两个部,其中A为已排好序的数,B为未排好序的数,初始状态下,A中只有一个元素。该算法依次从B中取数插入到A中的相应位置,直到B中的数取完为止。请在链表表示上实现上述的插入排序算法。-A sorting algorithm insertion sort in the sort algorithm, the number to be sorted is divided into two sections, wherein A is sorted
Sort(insertPBubblePHeapPmergePquick)
- 分别实现插入排序、冒泡排序、堆排序、合并排序、快速排序,以不同规模(100,1000,2000,5000,10000,100000个数据)的随机数作为测试数据集-Respectively, to achieve insertion sort, bubble sort, heap sort, merge sort, quick sort, at different scales (100,1000,2000,5000,10000,100000 data) of the random number
Insertion_sort
- C语言的插入排序代码,适合没有学习更好的算法的新手看看,以前写的,只不过是最近修改了修改!绝对可用!-C language insertion sort code, did not learn better algorithm suitable for the novice to see written before, but was recently changed to modify! Absolutely free!
sort
- 排序算法比较。 本程序实现了,快速排序 插入排序冒泡排序,快速和选择排序的结合算法。-Sorting algorithm. This program implements, quick sort insertion sort bubble sort, quick sort of combination and selection algorithms.
order
- 插入排序,对所输入的数据进行排序,提高系统的执行效率-order by data in a effective way and improve the effecient of System
sort
- 插入排序:(直接插入与折半插入)——练手代码 折半插入排序(binary insertion sort)是对插入排序算法的一种改进,所谓排序算法过程,就是不断的依次将元素插入前面已排好序的序列中。-sort algorithm