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

搜索资源列表

  1. XuanFa

    0下载:
  2. Vb七种排序算法模块源码示例,快下载啊.-Vb seven modules-source sample sorting algorithm, fast download ah.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:4189
    • 提供者:hebl
  1. sorting

    0下载:
  2. 快速排序算法,融合了选择排序和堆排序算法,使时间复杂度降为nlogn-Quick sort algorithm, the convergence of choices to sort and heap sort algorithm, so the time complexity is reduced nlogn
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:177033
    • 提供者:曹雷
  1. NBJG

    0下载:
  2. 设计一个测试程序比较几种内部排序算法的关键字比较次数和移动次数以取得直观感受。 基本要求 :(1)对起泡排序、直接排序、简单选择排序、快速排序、希尔排序、堆排序算法进行比较; (2)待排序表的表长不小于1000,表中数据随机产生,至少用5组不同数据作比较,比较指标有:关键字参加比较次数和关键字的移动次数(关键字交换记为3次移动); (3)输出比较结果。 -Design a testing procedure based on comparing several internal
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:45995
    • 提供者:迟浩东
  1. sort

    0下载:
  2. 一、课题名称:排序算法的比较 二、基本要求: 1.任意性:系统首先生成1000个随机整数,然后分别用不同的排序方法对其进行升序排序,给出每种方法的比较次数或所用时间 2.友好性:界面要友好,输入有提示,尽量展示人性化 3.可读性:源程序代码清晰、有层次 4.健壮性:用户输入非法数据时,系统要及时给出警告信息 三、课程总结 四、源码-First, the subject title: Comparison of sorting algorithm II, the bas
  3. 所属分类:Document

    • 发布日期:2017-04-17
    • 文件大小:155557
    • 提供者:稻草人
  1. DataStructureTest

    0下载:
  2. 数据结构的一些基本的相关的试验,如二叉树的遍历,打印,如排序算法,检索算法,动态结构的静态实现实验-Data structures related to some basic tests, such as binary tree traversal, print, such as sorting algorithms, search algorithms, the dynamic structure of the realization of the experimental static
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:209516
    • 提供者:林小峰
  1. FFT

    0下载:
  2. FPGA实现的基4FFT处理器高效排序算法研究-FPGA to achieve high-performance processor-based sorting algorithm 4FFT Research
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-24
    • 文件大小:60548
    • 提供者:萧球水
  1. javaSort

    0下载:
  2. 用Java编写的几种排序算法的实现,包括快速排序,Shell排序等几种高级的排序算法-Prepared to use Java realization of several sorting algorithms, including the quick sort, Shell sort, such as several high-ranking algorithm
  3. 所属分类:Document

    • 发布日期:2017-04-13
    • 文件大小:2624
    • 提供者:王本力
  1. Cpp2

    0下载:
  2. 对以链式存储结构存储的线性表,进行操作运算。要求用菜单选择操作方式完成下列功能。 建立单链表(尾插入,带头结点) 有序链表插入 逆置单链表 两链表合并并排序 算法输入:操作要求、结点信息(可取整型)。 算法输出:操作结果。-Store chain in the structure of the linear form storage, computing operation. Menu to select the requested operation with the
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:1227
    • 提供者:柏德胜
  1. 111

    0下载:
  2. 实现折半查找算法,实现直接插入排序、希尔排序(选做)、起泡排序、快速排序、简单选择排序和堆排序(选做)等算法
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:2936
    • 提供者:
  1. Student

    0下载:
  2. 学生管理系统 根据指定学生个数,逐个输入学生信息; (2) 逐个显示学生表中所有学生的相关信息; (3) 给定一个学生信息,插入到表中指定的位置; (4) 删除指定位置的学生记录; (5) 统计表中学生个数; (6) 利用直接插入排序或者折半插入排序按照姓名进行排序; (7) 利用快速排序按照学号进行排序; (8) 根据姓名进行折半查找,要求使用递归算法实现,成功返回此学生的学号和成绩; (9) 根据学号进行折半查找,要求使用非递归算法实现,成功返回此学生的姓
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-25
    • 文件大小:2282
    • 提供者:mianhuatang
  1. sort

    0下载:
  2. 数据结构课程的实验程序,演示了线性表的排序操作,包含多种排序算法,是一个控制台程序。-Experimental data structure course procedures, demonstrated the sort operation of the linear form, contains a variety of sorting algorithm is a console program.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1436
    • 提供者:menchael
  1. InternalsortandTimecomplexityAnalysis

    0下载:
  2. 给出了目前流行的直接插入排序、折半插入排序、希尔排序、冒泡排序、快速排序、简单选择排序、堆排序、归并排序、基数排序九种内部排序算法的c++源码,并对这些排序进行了分类和复杂度的分析,特别适合考研和学习数据结构的同学。-Are given directly into the popular sort, Insertion Sort half, Hill sort, bubble sort, quick sort, a simple choice to sort, heap sort, merge
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:430814
    • 提供者:huangjie
  1. Timing

    0下载:
  2. 这是一个通过选择排序算法的计时来获得该算法的时间复杂度的程序。-This is a sorting algorithm by selecting the time to obtain the algorithm' s time complexity of the procedure.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:1051
    • 提供者:cuijiao
  1. SortProject

    0下载:
  2. 各种经典排序算法的C++实现:堆排序,归并排序,桶排序,快排,希尔排序,外部排序。-serval famous sort algorithms: HeapSort, MergeSort, RadixSort, QuickSort, ShellSort, OutSort.
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:5555
    • 提供者:程序员
  1. PaiXu

    1下载:
  2. 各种排序算法的比较。数据结构课设时用到。-PaiXu.May it will help you.Thanks.
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:199757
    • 提供者:茂兜亞
  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-16
    • 文件大小:9313
    • 提供者:土咩豆
  1. ArraySort

    0下载:
  2. 排序算法 一、实验目的 掌握各种排序方法的实现思想。 二、实验内容 1、创建排序类。 2、提供操作:选择排序、冒泡排序、插入排序、*基数排序、*快速排序、*归并排序。 3、*能够显示各种排序算法的中间过程-A sorting algorithm, experimental purposes to master a variety of sorting methods to realize a thought. Second, the content of an exper
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:232020
    • 提供者:张效群
  1. VCneibupaixu

    0下载:
  2. VC++数据结构内部排序算法集合,包括原程序代码和PPT-Within the structure of VC++ data collection sorting algorithm, including the original program code and PPT
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:416751
    • 提供者:zhang
  1. sort

    0下载:
  2. 选择排序、插入排序、合并排序、快速排序、堆排序,五种排序算法的效率比较,具有简单的窗口界面-Selection sort, insertion sort, merge sort, quick sort, heap sort, five sorting algorithms comparison, has a simple window interface
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-09
    • 文件大小:1905248
    • 提供者:zhangjunfa
  1. MergeSortcode

    0下载:
  2. 合并排序 算法设计与分析 Java实现 配合算法设计与分析 第二版-Merge Sort Algorithm Design and Analysis of Java implementation
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:5730
    • 提供者:sunshine
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 50 »
搜珍网 www.dssz.com