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

搜索资源列表

  1. 完全实现快速排序算法

    0下载:
  2. 完全实现快速排序又称分区交换排序法 在待排序文件中任取一个元素(例如第一个元素),以该元素为标准,将所有元素分为二部分:所有小于该元素的集合,所有大于等于该元素的集合。 将该元素放在二部分中间 利用递归原理,分别对每部分进行排序-Fast sort algrithms
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:10928
    • 提供者:要命
  1. 20051207205008421

    1下载:
  2. 编写一个程序,采用单链表表示集合(集合中不存在重复的元素),利用例2.4的算法将其按递增方式排序,构成有序单链表。求这样的两个集合的并、交和差。-prepared a procedure, single chain said pool (pool, there is no duplication of elements), 2.4 cases using the algorithm based on the progressive sorting, orderly single-chain f
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:248191
    • 提供者:情缘
  1. paixu

    0下载:
  2. 此程序为各种排序算法的集合 在学习数据结构的时候 有什么不懂的 可以参考哦
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:13307
    • 提供者:xianxu
  1. algo & data structures graphs

    0下载:
  2. 图的遍历:图是由顶点集合(vertex)及顶点间的关系集合组成的一种数据结构:Graph=( V, E ).使用拓扑排序的算法.-traverse the map : The map is set by the vertex (Vertex) and the relationship between peak set consisting of a data structure : Graph = (V, E). The use of topological sorting algorithm.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2808
    • 提供者:黄枫
  1. Dijkstra

    0下载:
  2. 该问题为单元最短路经问题,求出一个有向图中两点之间权值最小的路径。 Dijkstra算法要求有向图中没有权值为负的边,有向图的信息由一个邻接表来表示,另外对每个顶点都设置一个属性d[v],描述从源点到v的最短路经上权值的上界。算法中设置一个顶点集合S,反复选择具有最短路经估计的顶点u∈V-S,并将u加入S中,算法中还用到了顶点的最小优先队列,排序关键字为顶点的d值。-The issue of the shortest path problem as a unit, find a directed
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:5710
    • 提供者:
  1. 23456787654321

    0下载:
  2. 问题一:设a[0:n-1]是已排好序的数组。请改写二分搜索算法,使得当搜索元素x不在数组中时,返回小于x的最大元素位置i和大于x的最小元素位置j,当搜索元素在数组中时,i和j相同,均为x在数组中的位置。 问题二:采用分治策略实现对n个元素进行排序的合并排序算法,其基本思想是:将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 问题三:给定n个矩阵{A1,A2,A3,……,An},其中,Ai与Ai+1是可乘的,i=1,2,
  3. 所属分类:Other systems

    • 发布日期:2017-04-15
    • 文件大小:9313
    • 提供者:土咩豆
  1. Core4

    0下载:
  2. Py.Core提供了以下的功能: - 字符串/日期/数字/正则表达式/文件/数据检查/类型转换 等常见操作。 - 缩略图/验证码/水印 等图片操作。 - 排序/搜索/加密/遍历 等常用算法。 - 日志功能(内置包括向 屏幕、窗口、文件、数据库 输出日志的工具)。 - HTML/INI/ZIP 压缩/JSON/XML/常用集合 等文件或数据结构的处理。 - FTP/上传/下载/邮件/登陆网站 等网络功能 。 -
  3. 所属分类:CSharp

    • 发布日期:2017-05-29
    • 文件大小:11936400
    • 提供者:郭启洋
  1. fenzhisuanfa

    0下载:
  2. 分治算法,对集合中的元素进行排序,使得以递增或者递减的顺序排列,具有较好的排序效率-Partition algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:3263
    • 提供者:sybilya
  1. sort

    0下载:
  2. 排序的多种算法实现,1.cpp是快排,2.cpp是堆排,3.cpp是折半排序,all.cpp是6种排序的一个集合。-Sort of a variety of algorithms, 1.cpp is fast row, 2.cpp heap row, 3.cpp binary sort, all.cpp is a collection of six kinds of sort.
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-12
    • 文件大小:252570
    • 提供者:齐齐
  1. fsdafasfsadfa

    0下载:
  2. 各种排序算法的C程序,经典集合,值得拥有-Various sorting algorithm of C procedures, the classic collection worth having
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:2972
    • 提供者:吴伟
  1. all_sort

    0下载:
  2. 各种排序算法的集合,并且进行测试,是综合学习排序算法的好例子-the function to sort the array,it includes all kinds of methods
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-18
    • 文件大小:1765
    • 提供者:肖伟
  1. 547684456

    0下载:
  2. 易语言数组排序算法集合源码,应用程序编程源码,很好的参考资料。-Easy language array sorting algorithm collection of source code, application programming source code, a good reference.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:8320
    • 提供者:维斯摩尔
  1. QuickSort

    0下载:
  2. 多种快速排序算法集合,经过优化,VC 6.0运行通过,控制台程序-Collection of a variety of quick sort algorithm, optimized, VC 6.0 run through the console program
  3. 所属分类:Console

    • 发布日期:2017-04-23
    • 文件大小:195969
    • 提供者:jiyinghui
  1. 45544

    0下载:
  2. 数组排序算法集合源码,应用程序编程源码,很好的参考资料。-A collection of source array sorting algorithm, application programming source code, a good reference.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:195621
    • 提供者:gaogke
  1. 6644

    0下载:
  2. 数组排序算法集合源码,应用程序编程源码,很好的参考资料。-A collection of source array sorting algorithm, application programming source code, a good reference.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:127344
    • 提供者:angutiaw
  1. sortAlgorithm

    0下载:
  2. 一些经典常用c语言排序算法的集合,便于整理查看。-Some collection of classic popular sorting algorithm c language, easy to organize viewing.
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1870
    • 提供者:Xie Guannan
  1. proj1

    0下载:
  2. 实现排序算法的大集合,可以用指针进行实现,非常实用-Sorting algorithm to achieve a large collection, you can use the pointer to realize, very practical
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-18
    • 文件大小:4876446
    • 提供者:习文
  1. function

    0下载:
  2. 一些算法的集合,可以直接测试使用,包括动态划分,分治,贪心算法等(Some of the sets of algorithms can be used directly to test the use of)
  3. 所属分类:其他

搜珍网 www.dssz.com