CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 控制台(字符窗口)编程 搜索资源 - 快速实现

搜索资源列表

  1. FFTbaseTime2

    0下载:
  2. 快速傅立叶变换的编码,基二的按时间抽取方法实现,包含完整的源代码和测试程序,在里面重载了许多符号-fast Fourier transform coding, the two-time extraction method. includes complete source code and testing procedures, which in many symbols Heavy
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:4567
    • 提供者:陈胜
  1. sort

    0下载:
  2. 各种排序算法的基本实现 插入排序 快速排序 希尔排序 {-The basic realization of the various sorting algorithms
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:2651
    • 提供者:张小凡
  1. sort

    0下载:
  2. 一个最全面的排序程序,其中包括了目前几乎所有常用的排序算法的实现,包括冒泡排序,简单交换排序,希尔排序,堆排序,直接插入排序,折半插入排序,2-路插入排序,快速排序,堆排序,归并排序,并且总结了相应的时间复杂度和空间复杂度-A sort algorithm that contains the bubble sort,simple swap sort,straight insert sort,binary insert sort,shell sort,quick sort,heap sort ,m
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:4183
    • 提供者:刘中燕
  1. ddzs

    0下载:
  2. 大地主题正算程序代码,实现大地主题快速方便计算-computer program code of Earth theme
  3. 所属分类:Console

    • 发布日期:2017-04-16
    • 文件大小:251490
    • 提供者:罗志明
  1. sort

    0下载:
  2. 常见排序算法的算法实现,插入,快速,选择,冒泡-Algorithm of the common sorting algorithms, insertion, fast, select, bubbling
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:299814
    • 提供者:蒋川
  1. SORT

    0下载:
  2. 用C++实现了多种排序算法,包括插入排序,冒泡排序,快速排序等。-C++ achieve a variety of sorting algorithms including insertion sort, bubble sort, quick sort.
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:925436
    • 提供者:Lisa
  1. FFT

    0下载:
  2. 快速fft算法的实现,增加了从文件读入的功能-Fast fft algorithm, increase the ability to read from the file into the
  3. 所属分类:Console

    • 发布日期:2017-03-30
    • 文件大小:120840
    • 提供者:何合
  1. proSort

    0下载:
  2. c语言快速排序算法简单实现-quick sort
  3. 所属分类:Console

    • 发布日期:2017-04-03
    • 文件大小:185166
    • 提供者:zhang
  1. compute_lasfousnum

    0下载:
  2. 采用分治法快速求解拉斯斐切数。代码用C语言编程实现,可用于处理数学问题。-The divide-and-conquer method fast solving Lasifeiqie number. Code with C language programming, can be used to deal with mathematical problems.
  3. 所属分类:Console

    • 发布日期:2017-11-22
    • 文件大小:659290
    • 提供者:liubin
  1. quicksort

    0下载:
  2. 快速排序源代码,实现了排序算法中的快速排序。-quick sort source code,realized quick sort algorithm using C
  3. 所属分类:Console

    • 发布日期:2017-11-17
    • 文件大小:671348
    • 提供者:liuyi
  1. qsort

    0下载:
  2. 快速排序程序,重要思想是 分组和递归来实现!-Quick sort program, it is important idea is grouping and recursive!
  3. 所属分类:Console

    • 发布日期:2017-12-08
    • 文件大小:1035
    • 提供者:陶文峰
  1. paixvsuanfa

    0下载:
  2. 排序算法的实现与比较(数据结构课程设计题)   问题描述:编程实现快速排序算法,并利用程序统计执行时间。   实现要求:随机产生10000、50000、 100000、 200000个待排数据存入磁盘文件,从磁盘文件读入待排数据进行排序,并将排序结果写入另一个文件中。-Implementation and comparison of sorting algorithms (data structure curriculum design questions) Problem Descr
  3. 所属分类:Console

    • 发布日期:2017-11-29
    • 文件大小:1182
    • 提供者:华黄
  1. qsort

    0下载:
  2. 能够实现数据的快速排序,非常高效,C++语言表述。nlogn复杂度-quick sort algorithm,with C++ language
  3. 所属分类:Console

    • 发布日期:2017-11-09
    • 文件大小:7923
    • 提供者:caoyi
  1. QuickSort

    0下载:
  2. 快速排序与随机化快速排序,控制台实现。10000以上各数测试-The quicksort randomized quick sort, to achieve console. 10,000 more than the number of test
  3. 所属分类:Console

    • 发布日期:2017-11-29
    • 文件大小:1103872
    • 提供者:tanzhaofei
  1. seven_kind_sorting

    0下载:
  2. 七种排序方法的综合实现 包括1.快速排序2.插入排序3.选择排序4.冒泡排序5.堆排序6.归并排序7.基数排序-Seven sorting method to achieve quick sort, insertion sort selection sort bubble sort 5. Heap sort, merge sort 7. Radix sort
  3. 所属分类:Console

    • 发布日期:2017-12-02
    • 文件大小:1764
    • 提供者:wangaohui
  1. quick-sort

    0下载:
  2. 用随机法实现快速排序,这是自己写的程序源代码,希望能帮助到需要的人。-Random method to achieve quick sort, which is to write the program source code, hoping to help people in need.
  3. 所属分类:Console

    • 发布日期:2017-04-02
    • 文件大小:740
    • 提供者:郭健
  1. quanpingfind

    0下载:
  2. VB全屏找图,一个小程序实现全屏快速找图功能,如果有不满意的地方请谅解-VB to find full figure, a small program to achieve full functionality quickly find map, if not satisfied, please understanding
  3. 所属分类:Console

    • 发布日期:2017-04-16
    • 文件大小:149789
    • 提供者:赵行科
  1. quicksort

    0下载:
  2. 用c语言实现的快速排序。快速排序效率较高,但可靠度相比其它排序算法而言较低。-Using c language quick sort. Quick Sort efficient, but in terms of reliability is low compared to other sorting algorithms.
  3. 所属分类:Console

    • 发布日期:2017-05-19
    • 文件大小:5200154
    • 提供者:xiang
  1. tiquyuanxin

    0下载:
  2. 本程序能够实现动态提取圆心坐标,基于两个摄像头,快速并稳定。-This procedure can achieve dynamic center extraction, based on the two cameras, rapid and stable.
  3. 所属分类:Console

    • 发布日期:2017-06-10
    • 文件大小:17311160
    • 提供者:zy
  1. Public

    0下载:
  2. 项目开发的基础代码,实现快速开发。 没什么用。仅供参考。-Under Windows reads. Ini configuration file for C++ classes. Packing the underlying API functions.
  3. 所属分类:Console

    • 发布日期:2017-04-17
    • 文件大小:9984
    • 提供者:dengyufeng
« 12 »
搜珍网 www.dssz.com