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

搜索资源列表

  1. shuffle

    0下载:
  2. 随机性发生器、冒泡分类和混洗一组12张牌的演示程序。 Demonstrates the use of a randomizer, bubble-sort and an array to \"shuffle\" a deck of 12 cards. I put it here for those of you who are trying to figure out how to shuffle with a randomizer without having the same card a
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:9467
    • 提供者:刘德小花
  1. 数据结构课设

    0下载:
  2. 用c编写的数据内部排序方法,可在窗口中选择多种排序方法,如快排,冒泡,折半插入等,还可以选择排序数据的个数,初态,控制等.-using data prepared by the internal order, the window can choose a variety of sequencing methods, such as fast Pai, bubbling half insert, can also choose the number of original data, the i
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:584007
    • 提供者:susu
  1. 常用的排序(c语言)

    0下载:
  2. 五个常用的排序方法,用C实现的,包括归并,插入,希尔,快速,冒泡-five commonly used sequencing method, the C achieved, including merging, inserting, Hill, rapid and Bubble
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3082
    • 提供者:
  1. 排序算法汇总和比较

    0下载:
  2. 实现了插入排序,希尔排序, 冒泡排序,快速排序,选择排序,堆排序和归并排序,以及可以对排序的性能进行分析,较适合用作排序算法的学习-achieved insertion sort, Hill, in order Bubble Sort, quick sort, select, in order of ranking and sculpture merge sorting, and sequencing can analyze the performance and more appropriat
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:37832
    • 提供者:叶靥
  1. 排序算法-java

    0下载:
  2. 用java实现的数据结构排序算法,包括:选择排序、插入排序、冒泡排序、希尔排序、快速排序、堆排序、归并排序。-used to achieve the ranking algorithm data structure, including : Select, in order of insertion sequence and Bubble Sort, Hill sequencing, rapid sequencing, heap sort, merging sequencing.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:54226
    • 提供者:陈为
  1. 几种排序方法的实现

    0下载:
  2. 用 插入排序, 希尔排序 ,冒泡, 快速排序 , 选择排序 ,堆排序, 归并排序 实现对任意随机数序列,并比较各种方法的运行快慢和复杂度-with insertion sort, Hill sequencing, bubbling Quick Sort, select, in order of ranking sculpture, merging order to achieve arbitrary random series, and compare the various methods o
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:389214
    • 提供者:陈婷
  1. kecsj_java

    2下载:
  2. JAVA课程设计!用线程来实现比较查找、排序算法的运行时间,第一部分是将顺序查找、折半查找算法设计成线程并同时运行来比较两种查找算法,第二部分是将冒泡排序、快速排序及选择排序设计成线程并同时运行来比较三种排序算法。本程序使用流行的GUI界面设计。-Java curriculum design! Using thread to achieve more search, algorithm running time, the first part of the order is to locate,
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12864
    • 提供者:爱情无敌
  1. 课程设计3

    0下载:
  2. 数据结构课程设计:冒泡排序算法的具体实现,用C语言编写-curriculum design data structure : Bubble Sort Algorithm realize the C language
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2630
    • 提供者:qin
  1. 排序和查找

    0下载:
  2. 常用的数据结构排序和查找算法:简单选择排序,冒泡排序,折半插入排序,快速排序,堆排序 顺序查找,折半查找.-commonly used data structures sorting and searching algorithms : simple choice, in order of Bubble Sort, half insertion sort, rapid sequencing, Heap Sort sequence search, binary search.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2577
    • 提供者:张杰
  1. 程序演示

    1下载:
  2. 可视化冒泡排序,其中包含了冒泡排序的具体算法,以及如何将结果通过可视化的编程工具C++Biulde实现-visualization Bubble Sort, which includes Bubble Sort of a specific algorithm, and how will the results of visual programming tools to achieve C Biulde
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:353398
    • 提供者:陈长俊
  1. 0305111

    0下载:
  2. 很好的一个DD。。 能够进行快速排序...利用C语言实现,8种排序算法! 例如:插入排序、快速排序、选择排序、冒泡排序、堆排序、希尔排序、归并排序、基数排序!-good a DD. . To conduct rapid sequencing ... use C language, eight algorithm! For example : insert sequencing, Quick Sort, select, in order of Bubble Sort, heap sort, Hil
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:5107
    • 提供者:333
  1. Some_Sort_Program_Implement_by_C

    0下载:
  2. 几种排序算法的C语言实现 用函数实现如下算法: (1) 直接插入排序, 希尔排序 (2) 冒泡排序, 快速排序 (3) 选择排序, 堆排序 (4) 归并排序 (5) 基数排序 -several algorithm using C language function algorithm to achieve the following : (a) direct insertion sort, Hill sequencing (2) Bubble Sort, rapid
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4008
    • 提供者:丘方
  1. VBKing

    0下载:
  2. 这是我的课程设计报告,本来是用VB设计一个界面出来,里面包含多种小游戏的,可惜删了,只剩下一份报告,里面包含了各个小游戏的程序算法代码:回溯法求解皇后问题、冒泡法的算法描述、快速排序法、二叉排序树(这里用C语言描述)、顺序查找算法、二分法查找、二叉排序树查找(这里用C语言描述)-This is my course design, originally designed with VB is an interface, and which contains a variety of small g
  3. 所属分类:其他游戏

    • 发布日期:2008-10-13
    • 文件大小:13801
    • 提供者:天路
  1. testbubble

    0下载:
  2. 冒泡排序法 (C++) 求链表操作 srasedfeadfeafds-Bubble Sort (C) List for operation srasedfeadfeafds
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7043
    • 提供者:liuyu
  1. PX

    0下载:
  2. oid Reset() //重置\"次数\", 即比较与移动的效率统计 int BubbleSort(int length, int ls[]) //冒泡排序 int InsertSort(int length, int ls[]) //插入排序 int SelectSort(int length, int ls[]) //选择排序 int QuickSort(int length, int ls[]) //快速排序 int ShellSort(int length, int
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1122
    • 提供者:Hy
  1. hebingxulie

    0下载:
  2. 复杂度比冒泡法更低的排序算法,合并序列排序法-complexity law bubbling lower than the ranking algorithm, combined sequence Sort
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1426
    • 提供者:Wiracle
  1. sdp

    0下载:
  2. 拓扑,直接插入,冒泡,简单选择,希尔 ,快速,堆排序-topology, direct insertion, bubbling simple choice, Hill, rapid and Heap Sort
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:221168
    • 提供者:李伟然
  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. shellsort111

    0下载:
  2. 附有本人超级详细解释(看不懂的面壁十天!) 一、 实际问题: 希尔排序(Shell Sort)是插入排序的一种。因D.L.Shell于1959年提出而得名。它又称“缩小增量分类法”,在时间效率上比插入、比较、冒泡等排序算法有了较大改进。能对无序序列按一定规律进行排序。 二、数学模型: 先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序;然后,取第二个增量d2<d1重复上述的分组和
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:19421
    • 提供者:乐乐
  1. all_kinds_of_algorithms

    0下载:
  2. 常用算法如西尔排序 堆排序 冒泡排序 选择排序等-common algorithms such as Silvan ranking Heap Sort Bubble Sort Selection Sorting etc.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2851
    • 提供者:jiangyi
« 1 2 3 4 56 7 8 9 10 ... 50 »
搜珍网 www.dssz.com