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

搜索资源列表

  1. paixuchengxu

    1下载:
  2. 设有1000个值在1到10000的整数,试设计一个利用散列方法的算法,以最少的数据比较次数和移动次数对它们进行排序。-with 1,000 in value from 1 to 10,000 integer and try to design a method of using hash algorithm, the minimum number of data comparison and the mobile number of their rank.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:6.57kb
    • 提供者:宁学勇
  1. CompareSort

    0下载:
  2. 十个算法的比较:冒泡,快速,插入,桶排序-10 Algorithm comparison : Bubble, quick, insertion and barrel ranking
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:12.53kb
    • 提供者:jiheng
  1. 冒泡法改进

    0下载:
  2. 冒泡法是数据排序的一种基本算法,它的基本方法是:相邻两元素进行比较,如有需要则进行交换,每完成一次循环就将最小元素排在最后(如从大到小排序),下一次循环是将其他的数进行类似操作?如将N 个数按从大到小排序,Turbo C语言程序函数 -Bubble Act to sort the data is a basic algorithm, which is the basic method : two adjacent elements, if required for the exchange, e
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1.33kb
    • 提供者:王想
  1. quicksort

    0下载:
  2. 用C语言实现了快速排序算法的非递归实现,方法比较有创意,有需要的可以研究一下-this is a C programme writed by C.
  3. 所属分类:CSharp

    • 发布日期:2017-03-28
    • 文件大小:20kb
    • 提供者:liusong
  1. Sort

    0下载:
  2. 各种排序算法实现和优化、比较。成功编译,c-Implementation and optimization of various sorting algorithms, comparison
  3. 所属分类:CSharp

    • 发布日期:2017-04-14
    • 文件大小:3.82kb
    • 提供者:XiaoyuShi
  1. sort

    0下载:
  2. 用非递归的算法对一组 数组进行排序,算法比较简单-Non-recursive algorithm to sort a set of array
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:598byte
    • 提供者:夏娜
  1. Paixu

    0下载:
  2. 这是基于c#的比较常用的排序算法,仅供大家参考,如有错误及时纠正。-Sorting algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-04-16
    • 文件大小:22.89kb
    • 提供者:钢铁
  1. SortShow

    0下载:
  2. 排序算法的动态演示,用程序模拟实现插入法排序、起泡法改进算法排序、快速排序、希尔排序。并分析比较各种排序算法的时间复杂度。(内含报告)。-Dynamic sorting algorithm demo application analog insertion method sort foaming method improved algorithm sort, quicksort, Hill sorting. And time complexity analysis comparing the v
  3. 所属分类:CSharp

    • 发布日期:2017-11-07
    • 文件大小:788.28kb
    • 提供者:韩旭辉
  1. paixu2

    0下载:
  2. 经典排序算法(冒泡,堆排序,简单比较等)-the document for
  3. 所属分类:CSharp

    • 发布日期:2017-11-13
    • 文件大小:183.67kb
    • 提供者:梁晓元
  1. Internal-sorting-

    0下载:
  2. 内部排序算法比较 掌握排序法的工作原理及应用过程,运用其工作原理上述实验题目中的内容。 -Internal sorting algorithm sorting method to grasp the working principle and the application process, the use of its working principle of the experimental subject content.
  3. 所属分类:CSharp

    • 发布日期:
    • 文件大小:354.94kb
    • 提供者:天溟
  1. CSharp

    0下载:
  2. C#访问数据库;C#实现九宫格算法;C#实现天干地支算法;C#正则表达式查找汉语重叠词语并计算正确率召回率F值;C#比较三种泛型容器和排序速度-C# to access the database C# implementation squares algorithm C# implementation attribution algorithm C# regular expression search Chinese overlapping words and calculates the
  3. 所属分类:CSharp

    • 发布日期:2017-11-02
    • 文件大小:6.49kb
    • 提供者:安安
  1. Compare

    0下载:
  2. 几种排序算法的比较.包括主流的快排,堆排,冒泡等。运用伪随机数发生器。高精度计时器。-several sorting algorithm comparision.
  3. 所属分类:CSharp

    • 发布日期:2017-04-17
    • 文件大小:36.29kb
    • 提供者:QinSiJun
  1. homework

    0下载:
  2. 将两个分别从小到大排列的有序数组a和b复制合并到第3个有序数组c中。m和 n分别是数组a和b的元素个数,结果c的元素个数为k。例如,a和b数组分别为{1,2, 2,3,8}和{3,4,7,8},则结果数组c的值是:{1,2,2,3,3,4,7,8,8)。算法是:将a、b两个数组看成两个队列,比较队首的两个元素,将较小者放入c队列尾部,如果队首的两个元素相等,则先选择a队列首部元素加入c队列尾部。循环执行以上过程,直到a或b队列之一为空,然后将另一个非空队列拷贝到c队列尾部。注意:不允许使用其它算
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:1.37kb
    • 提供者:姜玉洁
  1. internal-sorting

    0下载:
  2. (1) 对常用的内部排序算法进行比较:直接插入排序、简单选择排序、冒泡排序、快速排序、希尔排序。   (2) 利用随机函数产生N(如30000)个随机整数,作为输入数据作比较;比较的指标为关键字参加的比较次数和关键字的移动次数(关键字交换计为3次移动)。   (3) 对结果作出简要分析。-(1) internal sorting algorithm commonly used to compare: direct insertion sort, simple selection sort
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:1.45kb
    • 提供者:aaaa
  1. paixusuanfa

    0下载:
  2. 在教科书中,各种内部排序算法的时间复杂度分析结果只给出了算法执行时间的阶,或大概执行时间。试通过随机数据比较各算法的关键字比较次数和关键字移动次数,以取得直观感受。-In textbooks, various internal sorting algorithm time complexity analysis algorithm is given only to the order of time, or about the execution time.Through random da
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2.04kb
    • 提供者:谢双春
  1. bubblesort

    0下载:
  2. 冒泡排序(Bubble Sort),是一种计算机科学领域的较简单的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。-Bubble Sort (Bubble Sort), is a relatively simple sorting algorithm field of computer science. It repeatedly visited the number of columns to be sorted, a comparison of t
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:601byte
    • 提供者:mxin
  1. pai-xu--CPP

    0下载:
  2. 给出冒泡排序等3种排序算法,供初学者比较理解VC++编程!-It gives the other three kinds of bubble sort sort algorithm, for beginners to understand VC++ programming!
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:1.05kb
    • 提供者:于云龙
搜珍网 www.dssz.com