CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 快速排序

搜索资源列表

  1. Student

    0下载:
  2. 学生管理系统 根据指定学生个数,逐个输入学生信息; (2) 逐个显示学生表中所有学生的相关信息; (3) 给定一个学生信息,插入到表中指定的位置; (4) 删除指定位置的学生记录; (5) 统计表中学生个数; (6) 利用直接插入排序或者折半插入排序按照姓名进行排序; (7) 利用快速排序按照学号进行排序; (8) 根据姓名进行折半查找,要求使用递归算法实现,成功返回此学生的学号和成绩; (9) 根据学号进行折半查找,要求使用非递归算法实现,成功返回此学生的姓
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-25
    • 文件大小:2282
    • 提供者:mianhuatang
  1. dahuimopaixu

    0下载:
  2. 1、冒泡排序法2、快速排序法3、多个排序算法性能比较的方法 -paishu
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:55265
    • 提供者:pplow
  1. InternalsortandTimecomplexityAnalysis

    0下载:
  2. 给出了目前流行的直接插入排序、折半插入排序、希尔排序、冒泡排序、快速排序、简单选择排序、堆排序、归并排序、基数排序九种内部排序算法的c++源码,并对这些排序进行了分类和复杂度的分析,特别适合考研和学习数据结构的同学。-Are given directly into the popular sort, Insertion Sort half, Hill sort, bubble sort, quick sort, a simple choice to sort, heap sort, merge
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:430814
    • 提供者:huangjie
  1. c_methods_of_quick_sort

    0下载:
  2. 几种快速排序的方法,对int类型数组排序,对char类型数组排序,对double类型数组排序,对结构体一、二级排序,对字符串进行排序,计算几何中求凸包的cmp-Several methods of quick sort, sort array of type int, the type of char array to sort, sort array of double type of the structure of primary and secondary sort, sort of s
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1045
    • 提供者:Chueng
  1. KITBAG

    0下载:
  2. 背包问题是用贪心算法得到最优解得一个典型问题。背包问题具有最优子结构性质首先通过快速排序算法对物品按照单价从大到小排序,然后进行贪心选择。-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
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:695
    • 提供者:workfuture
  1. ArraySort

    0下载:
  2. 排序算法 一、实验目的 掌握各种排序方法的实现思想。 二、实验内容 1、创建排序类。 2、提供操作:选择排序、冒泡排序、插入排序、*基数排序、*快速排序、*归并排序。 3、*能够显示各种排序算法的中间过程-A sorting algorithm, experimental purposes to master a variety of sorting methods to realize a thought. Second, the content of an exper
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:232020
    • 提供者:张效群
  1. paixu

    0下载:
  2. 运用了Thread, event等技术,排序方法用到了 简单排序,冒泡排序,插入排序,快速排序,双向冒泡排序,合并排序。有良好界面演示.. -The use of the Thread, event and other technologies used in a simple sorting method to sort, bubble sort, insertion sort, quick sort, bidirectional bubble sort, merge sort. Have
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:80564
    • 提供者:麦志成
  1. homework

    1下载:
  2. 数据结构中的各种排序集合,包括桶排序、插入排序、希尔排序、冒泡排序、快速排序、选择排序、归并排序、堆排序、基数排序、奇偶排序-Data structure in a variety of sorting a collection, including the bucket sort, insertion sort, Shell sort, bubble sort, quick sort, selection sort, merge sort, heap sort, radix sort, odd
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:4096
    • 提供者:ri
  1. abcd

    0下载:
  2. 快速排序与交换排序算法比较 在Visual C++中建立一个单文档Windows应用程序,并实现下述功能: 运用随机函数自动生成一定规模的测试数据 (10000个测试元素),并输出到文件中。 分别执行快速排序算法和交换排序算法对测试数据排序,并输出到不同的文件中。 使用较为精确的QueryPerformanceCounter和QueryPerformanceFrequency等函数记录算法耗时,精确到毫秒,以便更好地进行算法耗时比较。 分析两种不同算法,有针对性地设计与调整测
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-14
    • 文件大小:3631711
    • 提供者:jane
  1. sort

    0下载:
  2. 选择排序、插入排序、合并排序、快速排序、堆排序,五种排序算法的效率比较,具有简单的窗口界面-Selection sort, insertion sort, merge sort, quick sort, heap sort, five sorting algorithms comparison, has a simple window interface
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-09
    • 文件大小:1905248
    • 提供者:zhangjunfa
  1. qsort

    0下载:
  2. 快速排序的集合,包含数字排序,字符串排序,浮点型数列排序,是一部不可多得的黑书!-A collection of quick sort, including the number of sorting, string sorting, sorting float series, is a rare black book!
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:3285
    • 提供者:wang
  1. sort

    0下载:
  2. 常见排序算法的性能分析及比较 插入排序、快速排序、冒泡排序、归并排序、桶排序-Common sort algorithm performance analysis and comparison Insertion sort, quick sort, bubble sort, merge sort, bucket sorting, etc
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:7761
    • 提供者:zhang liwei
  1. sort_exp

    1下载:
  2. 搜索算法源码:合并排序,快速排序,shell排序,插入排序,堆排序,冒泡排序,桶排序-sort: merge sort、quick sort、 shell sort、insert sort、heap sort、 bubble sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1405550
    • 提供者:vincol
  1. sort

    1下载:
  2. 数据结构课程设计(排序综合 利用随机函数产生N个随机整数(20000以上),对这些数进行多种方法进行排序。 要求: 1)至少采用五种方法实现上述问题求解(提示,可采用的方法有插入排序、希尔排序、起泡排序、快速排序、选择排序、堆排序、归并排序)。并把排序后的结果保存在不同的文件中。 2)统计每一种排序方法的性能(以上机运行程序所花费的时间为准进行对比),找出其中两种较快的方法。 -sort,multiply sort,it can help you a lot
  3. 所属分类:Data structs

    • 发布日期:2016-01-25
    • 文件大小:18432
    • 提供者:summit
  1. 电子地图管理系统

    0下载:
  2. 了解地图二进制格式, 能读取原始数据 对导航数据中的道路数据进行整理,分析,查询,排序 采用顺序查找,折半查找,分块查找 采用冒泡,快速,插入排序
  3. 所属分类:GPS编程

  1. sort

    0下载:
  2. 对希尔排序、快速排序、归并排序任意选择两种排序方法进行比较。(Hill sort, quick sort, merge sort, arbitrary selection of two sorting methods are compared.)
  3. 所属分类:数据结构

    • 发布日期:2017-12-18
    • 文件大小:2720768
    • 提供者:celty
  1. 实验六

    0下载:
  2. 8中简单排序算法,其中包括快速排序、堆排序、冒泡排序、直接插入排序、直接选择排序、归并排序等等(eight sort algorithms)
  3. 所属分类:数据结构

    • 发布日期:2017-12-24
    • 文件大小:1024
    • 提供者:鸿雁南飞
  1. sort

    0下载:
  2. 快速排序法和堆排序法Fortran90程序,其中快速排序法使用到了递归过程,因此对于堆栈要求较高(both Quicksort and Heapsort program are used for sort array. Note that a recursion process is used in Quicksort program, Thus it need require a relative high stack size.)
  3. 所属分类:数学计算

    • 发布日期:2017-12-20
    • 文件大小:1024
    • 提供者:dns
  1. QuickSort

    0下载:
  2. 快速排序算法,实现了快速排序,与归并排序算法进行对比(Quick Sort algorithm)
  3. 所属分类:其他

  1. H9

    0下载:
  2. 谢尔排序,快速排序以及归并排序的三个Python程序(Shell sorting, quick sorting and merge sort of three Python program)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:1024
    • 提供者:pinking
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
搜珍网 www.dssz.com