CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - quick sort

搜索资源列表

  1. order

    0下载:
  2. 比较6种排序算法的关键字比较次数和移动次数并取得直观感受。包括:冒泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序算法-Comparison of six kinds of sorting algorithms compare the number of keywords and mobile number to get an intuitive feel. Include: Bubble Sort, Insertion Sort directly, simply select S
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2865
    • 提供者:任晨亮
  1. char

    0下载:
  2. 字符的快速排序,能够以最短的时间对字符进行快速排序-Quick sort of characters, the shortest possible time to a quick sort of character
  3. 所属分类:IME Develop

    • 发布日期:2017-04-02
    • 文件大小:10391
    • 提供者:hk
  1. paixu

    0下载:
  2. 各种排序包括快速排序、冒泡排序、选择排序、插入排序-Sort, including a variety of quick sort, bubble sort, selection sort, Insertion Sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:925
    • 提供者:周凯
  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. Quicksort

    0下载:
  2. This one is Quick sort program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:382437
    • 提供者:KC.Park
  1. PaiXv

    0下载:
  2. 各种排序的c++编码,如选择排序,快速排序等-A variety of sort c++ code, such as selection sort, quick sort, etc.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:588505
    • 提供者:gumuxiyang
  1. 02

    0下载:
  2. stack quick sort 프 로 그 램
  3. 所属分类:Console

    • 发布日期:2017-04-16
    • 文件大小:19399
    • 提供者:lee yeonjung
  1. Sort_compare

    0下载:
  2. 经典的冒泡排序法、选择排序法、插入比较法、快速排序法及归并排序法的比较。-Classic bubble sort method, select the sort method, insert comparison, quick sort merge sort method and comparison method.
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-03-30
    • 文件大小:1898
    • 提供者:yushu
  1. selection

    0下载:
  2. 快速排序方法,应用直接选择,有界面,有说明。-Quick sort method, application direct selection. There are interface and direction in it.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:177547
    • 提供者:DC
  1. insertion

    0下载:
  2. 快速排序方法,应用直接插入,有界面,有说明。-Quick sort method, applied directly insertion. There are interface and direction in it.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:177566
    • 提供者:DC
  1. FourCsort

    0下载:
  2. C语言的四种排序:简单排序,起泡排序,选择排序,快速排序-The four C-sorting: simple sort, bubble sort, selection sort, quick sort
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:12119
    • 提供者:嘉宾
  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. quicksort_numbers

    0下载:
  2. this program is:quick sort numbers for you.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:1451
    • 提供者:Mostafa
  1. QuickSort

    0下载:
  2. 快速排序算法的一种经典实现,用Visual C++9.0实现-Quick Sort Algorithm- classical realization
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:510016
    • 提供者:刘鹏飞
  1. main.c

    0下载:
  2. 各种排序算法,包括希尔算法,快速排序,堆排序-A variety of sorting algorithms, including the Hill algorithm, quick sort, heap sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:2112
    • 提供者:zhangxin
  1. abcd

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

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

    0下载:
  2. sorting algorithm insist of bubble sort, insertion sort, merge sort, heap sort, and quick sort. to help you to understand about sorting algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:5592
    • 提供者:adityas
  1. kotak

    0下载:
  2. sorting algorithm insist of bubble sort, insertion sort, merge sort, heap sort, and quick sort. to help you to understand about sorting algorithm. please be patient
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:6994
    • 提供者:adityas
  1. paixu

    0下载:
  2. 数据结构各种排序实验报告,利用直接插入排序、冒泡排序、快速排序对数列进行排序。有随机生成数字-Experimental report a variety of sorting data structures, using a direct insertion sort, bubble sort, quick sort on the number of columns to sort. There are randomly generated numbers
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:50964
    • 提供者:andy
  1. C_Codes

    0下载:
  2. C codes for AVL tree, radix sort, quick sort, binary tree,calculator, dijikstra, swap function-C codes for AVL tree, radix sort, quick sort, binary tree,calculator, dijikstra, swap function....
  3. 所属分类:Windows Develop

« 1 2 3 4 5 6 7 89 10 11 12 13 ... 19 »
搜珍网 www.dssz.com