CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - Quick.c

搜索资源列表

  1. zhiwenshibie

    0下载:
  2. 指纹识别 C代码,有喜欢的快点下,本人的毕业设计-Fingerprint Identification C code, like the quick, I graduated from the Design
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:44.06kb
    • 提供者:zyhdsp
  1. Q_SORT

    0下载:
  2. 快速排序C++源码,已测试过-Quick Sort C source code, has tested.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1015byte
    • 提供者:高振翔
  1. 快速排序算法

    0下载:
  2. 快速排序算法,很好用,用c++编,拷贝在文本里,大家可以参考参考哦.-quick sort algorithm is useful, with c writers, copy in the text, one can refer to Reference oh.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2010-07-09
    • 文件大小:3.08kb
    • 提供者:严倾
  1. C++Builder_Sort

    0下载:
  2. 该程序把多种排序集中体现,包含了冒泡法排序、快速排序等多种排序方法,同时还详细讲述各种排序的分析,希望对编程初学者有一定帮助。-procedures for a variety of the sort embodied includes the Bubble Act, ranked Quick Sort and other ranking methods also explain in detail various sort of analysis, and I hope to the prog
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:21.91kb
    • 提供者:谢刚
  1. DEMO(sort)

    0下载:
  2. 实现各种内部排序。包括冒泡排序,直接插入排序,Shell排序,快速排序,堆排序,并比较排序的比较次数和移动次数。主要是C语言。-achieve internal order. Including bubble sort, direct insertion sort, Shell sort, quick sort, heap sort, and compare the ranking of number and mobile number. C is the main language.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:10.54kb
    • 提供者:张某某
  1. link_quicksort

    0下载:
  2. 链表的快速排序法-List`s quick sort
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-09
    • 文件大小:1.69kb
    • 提供者:站长
  1. C-W

    1下载:
  2. 旅行商算法 节约算法解决旅行商问题,可运行程序-c-w finish vrp PROBELM quick ,help c++ system
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-24
    • 文件大小:1.06kb
    • 提供者:FRANK
  1. QuickSort

    0下载:
  2. 用c++写的快速排序算法,从命令行输入数组,调用算法后,返回排序后的数组-With c++ Write quick sort algorithm, from the command line enter the array, called algorithms, return the array after sorting
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:942byte
    • 提供者:佚名
  1. paixu

    0下载:
  2. 2008软件公司面试题:排序大全:简单选择排序、冒泡排序、选择排序、shell排序、快速排序、插入排序、堆排序(从小到大)、归并排序(利用递归)-2008 software companies face questions: Sort Guinness: simple choice to sort, bubble sort, select sort, shell sort, quick sort, insert sort HEAPSORT (from small to large), Mergi
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:9.03kb
    • 提供者:chen
  1. quick

    0下载:
  2. 快速算法的c语言实现 使用快速算法对数组进行排序,数组为随机生成的-Fast Algorithm for c-language implementation using fast algorithm to sort an array, an array of randomly generated
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:627byte
    • 提供者:isnoo
  1. quicksort

    0下载:
  2. algorithm to sort the list of elements using quick sort
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:571byte
    • 提供者:bhupathi
  1. hyperQsort

    0下载:
  2. it s a c++ code for hyper quick sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.35kb
    • 提供者:kamlesh
  1. quick.c.tar

    0下载:
  2. enhanced quick-sort algorithm with c
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:564byte
    • 提供者:JonsenElizee
  1. Quick-Sort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。 -Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. Th
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:730byte
    • 提供者:mfeng
  1. quicksort_s.c

    0下载:
  2. sequential quick sort using quick function
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:673byte
    • 提供者:sara25
  1. C-cal

    0下载:
  2. 在撰写程式时,也许会遇到算法的问题,这时参考一下C语言算法速查手册,希望能有帮助,-Writing program, the algorithm may encounter problems, then refer to C language algorithms Quick Reference, hoping to help,
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-06-11
    • 文件大小:17.69mb
    • 提供者:espon2006
  1. c

    0下载:
  2. 对以下六种常用的内部排序算法进行比较:希尔排序、直接选择排序、快速排序、直接插入排序、堆排序、冒泡排序、。 (2)待排序表的表长和数据可以由用户自己确定,也可以由随机数产生程序自动产生;至少要用五组不同的输入数据作比较;比较的指标为关键字的比较次数和关键字的移动次数(关键字的交换计为三次移动)。 (3)最后要对结果作出简单分析。 -Six commonly used internal sorting algorithm: Hill Sort by direct selection s
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:8.83kb
    • 提供者:朱俊杰
  1. Lab-2

    0下载:
  2. A couple quick C++ sorting algorithms
  3. 所属分类:Algorithm

    • 发布日期:2017-12-02
    • 文件大小:5.62kb
    • 提供者:joe
  1. quick

    0下载:
  2. this is an quick sort algorithm which is written in c-this is an quick sort algorithm which is written in c++
  3. 所属分类:Algorithm

    • 发布日期:2017-12-06
    • 文件大小:34.86kb
    • 提供者:deansam
  1. exp10

    0下载:
  2. 三种排序算法的C语言实现 直接插入排序算法。 快速排序算法。 直接选择排序算法。(Implementation of three sorting algorithms in C language Direct insertion sort algorithm. Quick sort algorithm. Direct selection sorting algorithm.)
  3. 所属分类:数据结构

    • 发布日期:2017-12-30
    • 文件大小:1.69mb
    • 提供者:黄花寒
« 12 3 4 5 6 7 8 »
搜珍网 www.dssz.com