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

搜索资源列表

  1. 4-16

    0下载:
  2. 选择法排序:数据的排序就是将一批数据由小大到(升序)或由大到小(降序)进行排列。常用的有选择法、冒泡法。 -selection Ordering : Sorting data is a group of data from small to large (ascending) or 7,10,13 (descending) order. Commonly used in the selection and the Bubble Act.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:8744
    • 提供者:张云
  1. px10

    0下载:
  2. 对10个数进行排序. 可以利用选择法,即从后9个比较过程 中,选择一个最小的与第一个元素交换 ,下次类推,即用第二个元素与后8个进 行比较,并进行交换。-To 10 the number of sort. Can make use of selection, that is, from nine after the comparison process, select one of the least of the first elements of the e
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:816
    • 提供者:海浪
  1. Source

    0下载:
  2. 用.net开发的基于选择法排序的动态演示程序-Selection based on the sort of dynamic demo
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:40175
    • 提供者:张俊
  1. 1

    0下载:
  2. 先采用选择法,将学生成绩从高到低进行排序,再输入一个学生的成绩,将此成绩按照排序规律插入已排好序的学生成绩数组,最后将排好序的成绩单进行反序存放。-First selection method, the student scores high to low sort, and then enter a student s grades, this insert the sorted array of student achievement results sorted according to
  3. 所属分类:CSharp

    • 发布日期:2017-11-28
    • 文件大小:166060
    • 提供者:
  1. Athletes--cycle-control-

    0下载:
  2. 可以存放运动员号码,成绩,循环控制,用选择法排序-Can be stored in athlete numbers, results, cycle control, Sort selection method
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:13418
    • 提供者:李翔
  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. Sorting-algorithm

    0下载:
  2. 本文件包含常见经典排序算法如希尔排序、二分插入法、直接插入法、带哨兵的直接排序法、冒泡排序、选择排序、快速排序、堆排序。 -This file contains the common classical scheduling algorithms such as Hill sort, two insertion method, direct insertion method, the direct sequencing method with sentinel, bubble sort, s
  3. 所属分类:CSharp

    • 发布日期:2017-11-23
    • 文件大小:8551
    • 提供者:李峰
  1. Algorithm

    0下载:
  2. 用C#实现数据结构的各种排序功能,包括选择排序,快速排序,希尔排序,二分法排序,二叉排序树等-C# data structure to achieve the various sorting functions, including selection sort, quick sort, Hill sorting, sort of dichotomy, binary sort tree
  3. 所属分类:CSharp

    • 发布日期:2017-11-18
    • 文件大小:230853
    • 提供者:fdghdhg
  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. 6

    0下载:
  2. 快速排序法(quick sort)是目前所公认最快的排序方法之一(视解题的对象而定),虽然快速排序法在最差状况下可以达O(n2),但是在多数的情况下,快速排序法的效率表现是相当不错的。 快速排序法的基本精神是在数列中找出适当的轴心,然后将数列一分为二,分别对左边与右边数列进行排序,而影响快速排序法效率的正是轴心的选择。 -Quick sort (quick sort) is currently recognized as one of the fastest sorting method
  3. 所属分类:CSharp

    • 发布日期:2017-04-17
    • 文件大小:11461
    • 提供者:王硕
  1. 4

    0下载:
  2. 10个数进行排序可以利用选择法,即从后9个比较过程中,选择一个最小的与第一个元素交换, 下次类推,即用第二个元素与后8个进行比较,并进行交换。 -10 The number of sort method can be used to select, the nine comparison process, a minimum of exchange with the first element, the next and so on, that is the second element o
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:594
    • 提供者:孙永强
  1. gauss

    0下载:
  2. 高斯函数编写及其调用,数组排序,二分法,选择和冒泡法。-Gaussian function to write and call, sort the array, Dichotomy, and bubbling method.
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2685
    • 提供者:黄凤
  1. CPP-Programming-examples

    0下载:
  2. C++学习的一些实用的例子,包括沉底法排序,选择法排序,倒序,四则运算,同构数,因数分解等编程例子,可供大家学习。-C++ learning some practical examples, including the bottom of the method of sorting, sorting method, reverse order, four operations, isomorphism, factor decomposition and other programming exa
  3. 所属分类:CSharp

    • 发布日期:2017-12-14
    • 文件大小:4096
    • 提供者:王汉生
  1. 综合程序:学生成绩管理系统(四种写法)

    0下载:
  2. 1、可打印学生的信息; 2、可计算每个学生的M门功课的总成绩和平均成绩; 3、选择法按总成绩由高到低排序; 4、顺序查找法按学号查找; 5、可按姓名和学号分别查找; 6、有菜单功能;(1. Print student information; 2, calculate the total score and average grade of each student's M homework; 3, the selection method, according to the to
  3. 所属分类:C#编程

    • 发布日期:2017-12-19
    • 文件大小:13312
    • 提供者:周周y
搜珍网 www.dssz.com