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

搜索资源列表

  1. bucketSort

    0下载:
  2. 桶排序 (Bucket sort)或所谓的箱排序,是一个排序算法,工作的原理是将数组分到有限数量的桶子里。(BUCKETSORT (Bucket sort) or the so-called box sort is a sorting algorithm, the principle is the array is divided into a finite number of buckets.)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:216064
    • 提供者:binjun
  1. 2016032701

    0下载:
  2. 排序算法,包括冒泡排序,堆排序,快排,归并排序等等(Sorting algorithm, including bubble sort, heap sort, quick row, merge sort, and so on)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:654336
    • 提供者:张好烦
  1. 合并排序的分治算法

    0下载:
  2. 在Visual C++里编写程序,用分治法完成随机输入数列的合并排序(The program is written in Visual C++, and the sorting and sorting of random input sequence are completed by divide and conquer method)
  3. 所属分类:数学计算

    • 发布日期:2018-01-01
    • 文件大小:164864
    • 提供者:街奇儿
  1. H9

    0下载:
  2. 谢尔排序,快速排序以及归并排序的三个Python程序(Shell sorting, quick sorting and merge sort of three Python program)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:1024
    • 提供者:pinking
  1. 冒泡排序改进版

    0下载:
  2. 对冒泡排序进行改进。减少循环次数,降低算法复杂度(Improved bubble sort)
  3. 所属分类:其他

    • 发布日期:2018-01-05
    • 文件大小:707584
    • 提供者:周蛋宝
  1. sort

    0下载:
  2. 两个简单的c++排序算法,代码比较简单,仅供参考(Two simple c++ sorting algorithms, the code is relatively simple, for reference only)
  3. 所属分类:数据结构

    • 发布日期:2018-01-05
    • 文件大小:1024
    • 提供者:starry123
  1. sorts

    0下载:
  2. 桶排序,简单排序算法,利用Python语言实现,属于八大基本排序之一。(# coding:utf-8 def BucketSort(a): b = [0] * (max(a)+1) result = [] for num in a: b[num] += 1)
  3. 所属分类:网络编程

    • 发布日期:2018-01-06
    • 文件大小:1024
    • 提供者:lexi1121
  1. figuoechecked

    0下载:
  2. 直接插入排序算法的实现,KEIL环境下可以观测程序时间()
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-06
    • 文件大小:7168
    • 提供者:VT+093
  1. FDDM-adjactncy

    0下载:
  2. Bubble, BiDirectional Bubble, Bitonic排序算法()
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-06
    • 文件大小:2048
    • 提供者:Eltjac
  1. 1878023

    0下载:
  2. 目前最快速的字符串排序算法,1 0版本仅仅支持a-z 26个小写字符()
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-07
    • 文件大小:188416
    • 提供者:Wislnnvb
  1. 排序递归算法

    0下载:
  2. 数组做函数参数的退回问题 退回为一个指针, 1 正确做法:把数组的内存首地址和数组的有效长度传给被调用函数 2 //实参的a 和 形参的a 的数据类型本质不一样形参中的数组 ,编译器会把它当成指针处理 这是C语言的特色排序 本质也剖析 3 形参写在函数上,和写在函数内是一样的,只不过是具有对外的属性而已.(The return problem of the array as a function parameter is returned to a pointer, 1 corre
  3. 所属分类:Windows编程

    • 发布日期:2018-01-08
    • 文件大小:2048
    • 提供者:xiaomumu
  1. lab1

    0下载:
  2. 共享存储编程实验,用OpenMP实现并行的枚举排序算法和快速排序算法并与其串行算法进行比较(OpenMP parallel QuickSort)
  3. 所属分类:并行计算

    • 发布日期:2018-01-08
    • 文件大小:1024
    • 提供者:黯然之色
  1. 数据结构与算法分析+c语言描述[答案]

    1下载:
  2. 压缩包中包含各种排序经典算法。全部都用C语言实现。(Compressed package contains various sorting algorithms. All implemented in C language)
  3. 所属分类:其他

  1. Sort1

    0下载:
  2. 冒泡排序 和直接选择排序 java实现 冒泡排序算法 和 直接选择排序算法(bubbleSort and selectSort in java)
  3. 所属分类:其他

    • 发布日期:2018-01-08
    • 文件大小:2048
    • 提供者:StephW
  1. === 带精英策略的排序蚁群算法(C语言) ===

    1下载:
  2. 此算法可以很好的帮助使用语言进行开发的人,学习蚁群算法(This algorithm can help people who use language to develop and learn ant colony algorithm.)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-01-09
    • 文件大小:11264
    • 提供者:小南天门
  1. InsertDirect

    0下载:
  2. 直接插入排序算法Java实现,InsertDirect.java为算法代码,SortingTest.java为测试程序,二者放在一个包下。(InsertDirect Algorithm Java)
  3. 所属分类:数据结构

    • 发布日期:2018-01-10
    • 文件大小:1024
    • 提供者:Yutoti
  1. Quickp

    0下载:
  2. LINUX系统下的快速排序算法的MPI实现(MPI implementation of fast sorting algorithm)
  3. 所属分类:其他

    • 发布日期:2018-04-19
    • 文件大小:1024
    • 提供者:知白守
  1. 快速排序

    0下载:
  2. 快速排序,主要是代码实现,这是我上算法课的时候自己编写的,有些缺陷请原谅(quicksort,this is a easy test.i ues it to sort a easy array.)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-19
    • 文件大小:3072
    • 提供者:jakejian
  1. 0下载:
  2. 编写相邻两趟是反方向起泡的冒泡排序算法,排序算法(Preparation of two adjacent bubble sort algorithm is the opposite direction of the bubble)
  3. 所属分类:数据结构

    • 发布日期:2018-04-19
    • 文件大小:811008
    • 提供者:乘龙千里
  1. CountingSort

    0下载:
  2. 改进的基于c++的计算排序算法。排序算法大体可分为两种:     一种是比较排序,时间复杂度O(nlogn) ~ O(n^2),主要有:冒泡排序,选择排序,插入排序,归并排序,堆排序,快速排序等。     另一种是非比较排序,时间复杂度可以达到O(n),主要有:计数排序,基数排序,桶排序等。(Improved calculation algorithm based on C ++. There are two kinds of sorting algorithms: one is sorting
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-04-20
    • 文件大小:3347456
    • 提供者:zuijiaoluo
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
搜珍网 www.dssz.com