搜索资源列表
sort
- 各种内部排序算法的实现和比较,全部测试通过-Internal sorting algorithms and compare the realization of all the test
sorting
- 快速排序算法,融合了选择排序和堆排序算法,使时间复杂度降为nlogn-Quick sort algorithm, the convergence of choices to sort and heap sort algorithm, so the time complexity is reduced nlogn
Student
- 学生管理系统 根据指定学生个数,逐个输入学生信息; (2) 逐个显示学生表中所有学生的相关信息; (3) 给定一个学生信息,插入到表中指定的位置; (4) 删除指定位置的学生记录; (5) 统计表中学生个数; (6) 利用直接插入排序或者折半插入排序按照姓名进行排序; (7) 利用快速排序按照学号进行排序; (8) 根据姓名进行折半查找,要求使用递归算法实现,成功返回此学生的学号和成绩; (9) 根据学号进行折半查找,要求使用非递归算法实现,成功返回此学生的姓
KITBAG
- 背包问题是用贪心算法得到最优解得一个典型问题。背包问题具有最优子结构性质首先通过快速排序算法对物品按照单价从大到小排序,然后进行贪心选择。-Knapsack problem is a greedy algorithm with the optimal solution may be a typical problem. Knapsack problem with the nature of the optimal sub-structure, first of all, quick sort a
算法
- 总结了各个排序算法的使用,包括了冒泡,选择,插入,归并,希尔,快排等常用的排序算法(Summed up the use of sorting algorithms, including bubble, select, insert, merge, Hill, fast row and other commonly used sorting algorithm)
排序
- c++的排序算法,折半排序,直接插入排序,亲测成功,实训成果(Sorting algorithm, c++ binary sort, direct insertion sort, pro test success, training results)
排序算法
- 常用的经典排序算法整理,希望帮助大家,免得麻烦了(Commonly used sorting algorithm sorting, and I hope to help you, so as not to trouble)
Sort
- 针对目前所有的排序算法设计的一个C++的类(A class of C++ designed for all current sorting algorithms)
QuickSort
- 快速排序算法,实现了快速排序,与归并排序算法进行对比(Quick Sort algorithm)
第二次实验第一题
- 建立元素值为整型的顺序表,编程,用插入排序算法实现顺序表排序 建立元素值为整型的单链表,编程,用插入排序算法实现单链表排序(Establish the element value of integer order form, programming, using sequence table sort insertion sort algorithm)
gpu排序
- gpu平台下,基于CUDA 软件体系完成排序算法的并行(Parallel sorting algorithm based on CUDA software system under GPU platform)
5_2
- 用C语言写了一系列内部排序算法,通过输出和排序信息的统计来进行比较(Using C language to write a series of internal sorting algorithm, through the output and sorting information statistics to compare)
Sort
- 计算各个排序算法的时间复杂度,以及给出各个排序算法代码(The time complexity of each sorting algorithm is calculated and the code for each sort algorithm is given)
内排序算法
- 常见6种内排序算法,冒泡排序,直接插入排序,直接选择排序,快速排序,希尔排序,堆排序(Common 6 internal sorting algorithms, bubble sort, direct insertion sort, direct selection sort, quick sort, Hill sort, heap sort)
部分排序算法(C语言版)
- 部分常用排序算法的代码实现 如冒泡排序,快速排序等(Code implementation of some commonly used sorting algorithms)
sort
- 排序算法,java语言编写,有直接插入排序,希尔排序,冒泡排序,快速排序,归并排序,堆排序。(Sorting algorithm, written in Java language, has direct insertion sort, Hill sort, bubble sort, quick sort, merge sort, heap sort.)
字典排序
- 利用c语言实现字典排序算法,可以简单的使用。(Using C language to implement dictionary sorting algorithm)
算法时间复杂度的实验测试
- 以堆排序算法为例,改变输入规模n,测试算法时间复杂度(Time complexity of algorithm)
单链表直接选择排序
- 建立一链表,存入一系列学生成绩,并设计直接选择排序算法对学生成绩进行排序(Set up a list, store a series of student achievement, and design direct sorting algorithm to sort student achievement)
堆排序Java实现
- 利用Java编程语言实现的堆排序程序,能够实现对数组进行从小到大进行排序,也可通过修改代码,实现由大到小进行排序。