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

搜索资源列表

  1. 数组排序算法改进版

    1下载:
  2. 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 dinimicky_hu对原程序做了修改和优化,使用了函数指针数组,并修改了一个BUG-The head file of this programme includes 4 methods of sorting : Bublle sorting,insertion sortin
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:29134
    • 提供者:杨杰
  1. 200661131050069

    0下载:
  2. 选择排序是一种比较优化的排序,它定义的k意义在于表示一次循环后找到的最小(大)值的位置,然后让第i个(第几次循环就是第几个)植交换,这样在第一轮循环中就把最小(大)的值换到了最前面,如果只用i,j 的话,就没有办法找出待排序数据中的最值了 比较排序也叫冒泡排序,就是把相邻的数据比较交换,因为其把小的数字从后面往前慢慢移动,感觉象水泡上升一样,所以叫冒泡排序法. 如过你还没理解,留言~-SELECTION SORT is a more optimal sequencing, its def
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:3268
    • 提供者:斯多葛
  1. useful-programs

    0下载:
  2. 几个常用的VC++程序,冒泡排序法,选择排序法,最大公约数,插入数据,求最大值-VC procedures, bubble sort, select Sort, the common denominator, insert data, and seeking maximum
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1647
    • 提供者:王家牧
  1. C源代码实例

    8下载:
  2. 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014 求解二维数组的最大/最小元素 015 利用数组求前n个
  3. 所属分类:Windows编程

    • 发布日期:2009-06-04
    • 文件大小:3250828
    • 提供者:79446210
  1. 1

    1下载:
  2. 数据结构 内部排序分析(C++源代码) 其中包括 第一种算法为选择排序,二为插入排序,三是冒泡排序,六是二分法插入排序-Analysis of internal data structure to sort (C++ source code) which includes an algorithm for the selection of the first order, second for the Insertion Sort, Bubble Sort is three, six is
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:1622
    • 提供者:aaa
  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. visualc1

    0下载:
  2. 函数fun的功能是将存放学生数据的结构体数组按照姓名的字典序(从小到大)排序,在fun函数内采用的选择排序法,选择排序法中的升序排序,首先从数组中挑选一个元素,把它和第一元素交换,接着从剩下的n-1个元素中再挑出一个最小的元素,把它和第二个元素交换,不断重复以上过程,直到比较完最后两个元素。 -Function fun function is to store the data structure an array of students by name, the dictionary or
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:772
    • 提供者:晶晶
  1. Ktongfa

    0下载:
  2. 著名的大数量的排序算法--K桶排序法~在数据文本式的大数据排序时,K桶法会是一个不错的选择! k桶法:k桶法有两个主要步骤:分桶,整合。 分桶:把n个数依次放入k个桶中,除了第k个桶外,放入前k 1个桶中的数都要求后一个大于 前一个。分桶的具体规则如下: 第1个数放入第一个桶内,第2个数若大于第一个桶中的数(即第一个数)则放入第一个桶内, 否则放入第二桶内,以此类推。设现要将第j个数放入某桶中,先从第一个桶试起,若第j个 数大于当前第一个桶中最
  3. 所属分类:其他小程序

    • 发布日期:2013-05-19
    • 文件大小:7019
    • 提供者:肖煜东
  1. Sort_BySelect

    0下载:
  2. 选择排序法,在visial c++上编程的.-Selection Sort, programmed visial c++.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:175664
    • 提供者:张jaiah
  1. sort

    0下载:
  2. 用VB写的选择排序法,适合VB初学者学习。-another sort
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-07
    • 文件大小:1823
    • 提供者:leisure
  1. Selection-sort

    0下载:
  2. 该程序利用选择排序法对数字进行排列,读者可以自行输入任意的一串数字,该程序可以输出最终排列好的数字-The program selection sort arranged in the digital readers can enter any string of numbers, the program can output a final order
  3. 所属分类:CSharp

    • 发布日期:2017-11-15
    • 文件大小:258275
    • 提供者:xiaoye
  1. 4

    0下载:
  2. 之前已经上传了1个,现在一次上传4个吧。 分别是:杨辉三角形、选择排序法、正负输输出三角星星、水仙花数-Have posted before 1, now a upload 4. Are: the Yang Hui triangle, selection sort, positive and negative output triangle of stars, the number of daffodils
  3. 所属分类:CSharp

    • 发布日期:2017-11-10
    • 文件大小:16250542
    • 提供者:胡杰彬
  1. c

    0下载:
  2. 选择排序法 选择排序法 选择排序法-Select sort method to choose the sort method to choose the sort method to choose sorting method
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-09
    • 文件大小:3841
    • 提供者:shiyi
  1. sorting-based-compare

    0下载:
  2. 本文件提供了四种基于比较实现的排序方法,包括选择排序法、插入排序法、快速排序法和归并排序法-This document provides four comparison-based sorting method implemented, including the selection sort, insertion sort, quick sort and merge sort method
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-01
    • 文件大小:4631
    • 提供者:高岚
  1. select

    1下载:
  2. 选择排序的比较:(1)生成一组随机数以顺序方式存储,并输出。(2)利用选择排序法排序,同时统计比较次数和移动次数,显示结果。(3)利用堆排序法排序,同时统计比较次数和移动次数,显示结果。-Sorted comparison: (a) generating a set of random numbers is stored in a sequential manner, and output. (2) the use of select sort order, and statistical co
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1609
    • 提供者:
  1. code

    0下载:
  2. 该程序为利用选择排序法给数组排序的程序。-Select the method to use to sort an array of programs.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:608
    • 提供者:wendy_Lu
  1. Heap-sort

    0下载:
  2. Heap排序法让搜寻的路径由树根至最后一个树叶,而不是整个未排序部份,因而称之为改良的选择排序法。-Heap sort to make a path the root to search for the last one leaves, rather than the entire unsorted part, which is called a modified selection sort.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2073
    • 提供者:sulong
  1. xuanzeandcharu

    0下载:
  2. 选择排序法和直接插入排序法的简单实现代码-Select sort method and direct insertion sort simple implementation code
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:961
    • 提供者:肥肥
  1. Choice ranking method

    0下载:
  2. 三种选择排序法,每一趟在n-i+1(i=1,2,…n-1)个记录中选取关键字最小的记录作为有序序列中第i个记录(Three alternative sorting methods, each in n-i+1 (i=1, 2),... (n-1) the minimum record of the keyword selected in the record is used as the I record in the ordered sequence)
  3. 所属分类:其他

    • 发布日期:2017-12-27
    • 文件大小:1024
    • 提供者:fan_fan123
  1. 数字排序

    0下载:
  2. 对10个数进行排序?1.程序分析:可以利用选择法,即从后9个比较过程中,选择一个最小的与第一个元素交换,??????? 下次类推,即用第二个元素与后8个进行比较,并进行交换。?(The number 10 ranking 1. program analysis: can use the selection method, from 9 months after the comparison process, select a minimum exchange with the first
  3. 所属分类:其他

« 12 3 4 »
搜珍网 www.dssz.com