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

搜索资源列表

  1. Sort

    0下载:
  2. 五种常用的排序算法:冒泡、选择、插入、归并、快速排序的实现-Five commonly used sorting algorithms: bubble, choose, insert, merge, quicksort implementation
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1920521
    • 提供者:webberzhou
  1. QuickSort

    0下载:
  2. 对{6,8,7,9,0,1,3,2,4,5},采用快速排序(Quicksort),输出每趟的排序结果。-Of {6,8,7,9,0,1,3,2,4,5}, using quick sort (Quicksort), output per trip of the results.
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:8401
    • 提供者:lsy
  1. sort

    0下载:
  2. 两个模板函数,一个是快速排序算法,一个是二分查找算法。-Two template functions, one is the quick sort algorithm, a binary search algorithm is.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:532
    • 提供者:黎伟
  1. qsort

    0下载:
  2. 快速排序算法(分治策略) C++编写 调用递归-Fast sorting algorithms (divide and conquer strategy) C++ write
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:532
    • 提供者:Frank
  1. java1

    0下载:
  2. 快速排序,排序是计算机算法中很重要的一部分,本人写的不算很好但也不错。-Quick sort, sorting algorithm is a very important computer part, I write not very good but not bad.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:595
    • 提供者:姜伟
  1. SortCmp

    0下载:
  2. 插入排序,快速排序,归并排序,基数排序算法的实现,基于VS2008的MFC实现,界面很清新简洁,代码部分清晰明了,有需要的童鞋不妨下来-Insert_sort, Quick_sort, Merge_sort, Radix_sort
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:46589
    • 提供者:lq
  1. sort

    0下载:
  2. 用c语言实现数据结构课本中的排序算法,包括希尔排序,快速排序,堆排序,归并排序,基数排序-Data structure using c language textbooks, sorting algorithms, including the shell sort, quick sort, heap sort, merge sort, radix sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1977
    • 提供者:李工
  1. seven-ranking-method

    0下载:
  2. 用7种不同的方法对输入的10数进行排序,包括二归路排序法,谢尔排序法,快速排序法-In seven different ways to sort the input number of 10, including two return sort, Shell sort, quick sort, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1569
    • 提供者:leafinee
  1. 451

    0下载:
  2. 这是一个关于排序的CPP文件,里面有四种排序方法,分贝是选择,冒泡,插入,跟快速排序。-this is a cpp file about sort way.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:813
    • 提供者:小郑
  1. StringSort

    0下载:
  2. 问题描述:输入若干组长度各异的待排序列,分别用快速排序算法和改进的枢轴元素三者取中算法对待排序列进行排序,当待排子序列长度已小于 20时,改用直接插入排序,利用时间函数验证三者取中算法在效率上的提高。(提示: 待排序列的长度一般应为 5000 以上)-Problem Descr iption: Enter the number of head of the column to be sorted varying degrees, respectively, with quick sort alg
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1353
    • 提供者:NoKoo
  1. shujujiegou

    0下载:
  2. 各种排序算法 冒泡排序、选择排序、插入排序、快速排序、计数排序、归并排序、堆排序、希尔排序 能够选择其中一个排序算法,以运行该程序 -failed to translate
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:631732
    • 提供者:pcw
  1. improved-quiksort

    0下载:
  2. 对传统的快速排序加入插入排序进行改进 并根据时间函数测算最优的K值-Improved quiksort
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:897
    • 提供者:weiwei
  1. sort_compare

    0下载:
  2. 三种排序算法(直接插入、冒泡、快速排序)效率比较-Three sorting algorithms (direct insertion, bubble, quick sort) more efficient
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1127
    • 提供者:mingcx
  1. student

    1下载:
  2. 设计并实现一个学生管理系统,即定义一个包含学生信息(学号,姓名,成绩)的的顺序表,可以不考虑重名的情况,系统至少包含以下功能: (1) 根据指定学生个数,逐个输入学生信息; (2) 逐个显示学生表中所有学生的相关信息; (3) 给定一个学生信息,插入到表中指定的位置; (4) 删除指定位置的学生记录; (5) 统计表中学生个数; (6) 利用直接插入排序或者折半插入排序按照姓名进行排序; (7) 利用快速排序按照学号进行排序; (8) 根据姓名进行折半查找,要求使
  3. 所属分类:Education soft system

    • 发布日期:2017-05-01
    • 文件大小:844931
    • 提供者:dctianshi
  1. sort

    0下载:
  2. 基本的排序算法 包括: 直接插入排序、冒泡排序、归并排序、堆排序、选择排序、快速排序、希尔排序、基数排序、以及产生N个随机数的算法 c语言实现-insertsort bubblesort mergesort heapsort selectsort quicksort shellsort radixsort rand c language
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:581621
    • 提供者:mypurelove
  1. sort

    0下载:
  2. 其中包含了各种算法 推排序 快速排序 直插排序-Which contains a variety of sorting algorithms Quicksort push sort, and so on and so on-line
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:7525
    • 提供者:fengtong
  1. SortShowDemo

    0下载:
  2. 冒泡、选择、插入、快速排序java演示,有图有真相,eclipse中完美运行。研究算法的同学欢迎拿去-Bubble, selection, insertion, quick sort java demo map with the truth, eclipse the perfect run. Welcome to take the students study algorithms. .
  3. 所属分类:Java Develop

    • 发布日期:2017-04-04
    • 文件大小:24703
    • 提供者:王洋
  1. quick-sort

    0下载:
  2. 递归式快速排序代码。没有大小限制,最大限度加速-Recursive quick sort code. No size limit, the maximum acceleration
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:874
    • 提供者:zibin_lee
  1. paixusuanfa

    0下载:
  2. 排序是计算机程序设计中的一种重要操作。通过对起泡排序、直插排序、选择排序、快速排序、归并排序这几种内部排序算法进行比较,能使我们更好的掌握这些排序的基本思想及排序算法。-Sort of computer programming is an important operation. Through the bubble sort, in-line sorting, selection sort, quick sort, merge sort algorithm to sort these type
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:79967
    • 提供者:
  1. QuickSort

    0下载:
  2. 快排,快速排序算法,里面包含例子,并且有原始版本,有改进: 去除尾递归,有去除尾递归, 改进2):将较短的区间使用递归去排序. 较长的区间用循环去排序.-Fast discharge, fast sorting algorithm, which contains examples, and there is the original version, there are improvements: removal of tail recursion, there is removal of
  3. 所属分类:Data structs

    • 发布日期:2017-04-23
    • 文件大小:12490
    • 提供者:simon
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com