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

搜索资源列表

  1. duipaixu

    0下载:
  2. 关于堆排序算法的相关的用c语言编写的一个源程序代码-heap sorting algorithm for the use of the c language a source code
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1155
    • 提供者:王鹤新
  1. Chap07InSortcompare

    0下载:
  2. 数据结构与算法代码 各种排序算法的实验比较 计算不同初始状态与排序规模下的各种排序算法的运行时间 -data structure and algorithm code various Sorting Algorithm different experimental comparison with the initial state ranking of the scale Ranking algorithm time
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:50962
    • 提供者:wu
  1. Quick_Sort_forleaner

    0下载:
  2. 数据结构的快速排序算法的实现程序,希望对大家有帮助-data structure of the quick sort algorithm procedures, we hope to help
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1083
    • 提供者:y
  1. 404504174sort

    0下载:
  2. 多种排序算法实现,有直接插入,选择,冒泡快速排序等等……非常实用哦-multiple sorting algorithm, and it is directly inserted, selection, etc. Bubble Quick Sort very practical ... oh ... ... ...
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6669
    • 提供者:lvzhou
  1. bitonic

    0下载:
  2. 基于最新一代通用GPU--Geforce8800,在CUDA平台上开发的并行排序算法,是基于GPU的通用计算的应用程序的一个好的范例。-based on the latest generation of common GPU -- Geforce8800. CUDA platform in the development of the parallel scheduling algorithm, GPU is based on the calculation of the common appl
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1566676
    • 提供者:白洪涛
  1. shujukuchaxun

    0下载:
  2. 五种排序算法,方便实用,全部通过测试!请放心使用-five ranking algorithm, convenient and practical, all passed the tests! Please be assured use
  3. 所属分类:并行运算

    • 发布日期:2008-10-13
    • 文件大小:30279
    • 提供者:小林
  1. HeapSort22

    0下载:
  2. 算法中的堆排序算法的实现-algorithm Heap Sort algorithm.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:9501
    • 提供者:张应
  1. C_linksort

    0下载:
  2. C++的链表排序算法,简单清晰,移植扩充均非常方便。-C + + objectlist sorting algorithm, simple and clear, expansion of transplantation are very convenient.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12239
    • 提供者:锐一
  1. charufa3

    0下载:
  2. 插入排序法.本代码用升序排序算法.在VC++6.0调试过,没有错误-insertion sort. The code used ascending sort algorithm. In VC + +6.0 debugging, without error
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:819
    • 提供者:fan
  1. vc_jiqiaoshili_part1

    0下载:
  2. Visual.C++程序设计技巧与实例--配套光盘 第1章 C_C++基础 共有四个实例 1. ex1_7用C语言实现参数个数可变的函数 2. ex1_8创建和访问环境变量 3. SortDemo各种排序算法示例 4. BinaryTree二叉排序树相关操作示例-Visual.C program design techniques and examples -- matching CD Chapter 1 C_C foundation is a total of four
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:72991
    • 提供者:xixi
  1. java0004

    0下载:
  2. 这是一个java下的不错的排序算法代码。-This is a good java of the ranking algorithm code.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:11773
    • 提供者:
  1. GraphicsSort.src

    0下载:
  2. 数据结构排序算法演示
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:18540
    • 提供者:陈功
  1. yuanma

    0下载:
  2. 1.大型稀疏线性方程组的求解 A*X=b 。 2. 一维数组冒泡法排序算法 4.矩阵求逆 5. 改进的牛顿算法——弦割法 -1. Large sparse linear equations, the solution X = A * b. 2. One-dimensional array Bubble Act Sorting Algorithm 4. 5 matrix inversion. Improved Newton's algorithm -- S
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:5020
    • 提供者:何富龙
  1. countsort

    0下载:
  2. 计数排序是一个非基于比较的线性时间排序算法。它对输入的数据有附加的限制条件: 1、输入的线性表的元素属于有限偏序集S; 2、设输入的线性表的长度为n,|S|=k(表示集合S中元素的总数目为k),则k=O(n)。 在这两个条件下,计数排序的复杂性为O(n)。 计数排序算法的基本思想是对于给定的输入序列中的每一个元素x,确定该序列中值小于x的元素的个数。一旦有了这个信息,就可以将x直接存放到最终的输出序列的正确位置上。例如,如果输入序列中只有17个元素
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1382
    • 提供者:金龙
  1. 20070609

    0下载:
  2. 高斯回代算法源代码 蚁群算法的matlab源码 蚁群算法TSP(旅行商问题)通用matlab程序 Java实现几种常见的排序算法 用pascal语言实现希尔排序算法-Gaussian back to the source code generation algorithm Ant Algorithm Matlab source Ant Algorithm TSP (TSP) General Matlab procedures Java Several ranking algori
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6323
    • 提供者:asegwaeg
  1. kuaisufa3

    0下载:
  2. 快速排序算法:初始化一个数组,并演示出排序的过程,给出排序后的数组进行比较。-Quick Sort Algorithm : an array initialization, and demonstrated the process of sorting out. given sorting arrays were compared.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:859
    • 提供者:刘莹
  1. Burstsort-1.0-source

    0下载:
  2. 目前最快速的字符串排序算法,1.0版本仅仅支持a-z 26个小写字符-most rapid string sorting algorithm, version 1.0 supports a just-z 26 lowercase characters
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:192669
    • 提供者:nanluling
  1. paixupro

    0下载:
  2. 排序算法,非常实用,不可多得,是学习C编程的好资料之一-sorting algorithm, very practical, rare is studying C programming one of the good information
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:46926
    • 提供者:dream
  1. jasonkingde

    0下载:
  2. 排序及应用 题目一:统计成绩 1. 实验目的:掌握常用的排序方法,深刻理解排序的定义和各种排序方法的特点,并能灵活应用。 2. 实验内容: (1) 输入n个学生的考试成绩,每个学生信息由姓名与分数组成; (2)选择一种排序算法,按分数高低次序,打印出每个学生的名次,分数相同的为同一名次。 (3)按名次给出每个学生的姓名与分数。 3. 实验要求:任选一种高级程序语言编写源程序,并调试通过,测试正确。 题目二:按字典顺序排序 1. 实验目的:掌握常用的排序方
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:10755
    • 提供者:jason
  1. ad

    0下载:
  2. 快速排序算法的c实现-fast algorithm to achieve c
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1735
    • 提供者:李俊
« 1 2 ... 14 15 16 17 18 1920 21 22 23 24 ... 50 »
搜珍网 www.dssz.com