搜索资源列表
testDD
- 汇编程序,实现学生成绩的排名功能。不对学生成绩进行全部排序,通过比较和计数实现。-compilation procedures, student achievement in the ranking function. Wrong results for all students, ranked by comparing the count and realized.
sort
- 一 :排序n个元素,元素为随机生成的长为1~16的字符串,n的取值为2k(k取4、6、8、10、12、16、18、20),排序算法分别为直接插入排序, 冒泡排序,堆排序,归并排序,快速排序,比较各种排序在不同输入下的运行时间. 二:排序n个元素,元素为随机生成的1~10000的正整数,n的取值为2k(k取4、6、8、10、12、16、18、20),排序算法分别为直接插入排序,快速排序,基数排序,计数排序,比较各种排序在不同输入下的运行时间.
WordCount
- 本示例说明了如何创建打开多个文件并对每个文件的字节数、字符数、单词数和行数进行计数的应用程序。运行此示例后将显示每个文件的统计结果和所有文件的总计。 该示例是控制台应用程序;必须从命令行运行该程序以查看其输出。 此示例使用下面的技术和类: I/O - FileStream - 允许文件访问。此类用于读写文件。 StreamWriter - 与 FileStream 实例一起使用可以将格式化文本输出到文件。 StreamReader
jspx
- 计数排序,一个算法的程序. 计数排序,一个算法的程序.
guanli
- 一个小型信息(可以是图书、人事、学生、物资、商品等任何信息)管理系统。实现插入、查找、删除、计数、排序、输出等功能。并能在屏幕上输出相应的结果。以把所学数据结构知识应用到实际软件开发中去。
paixu1
- 已知记录序列a[1..n] 中的关键字各不相同, 可按如下所述实现计数排序:另设数组c[1..n],对每 个记录a[i], 统计序列中关键字比它小的记录个数存 于c[i], 则c[i]=0的记录必为关键字最小的记录,然 后依c[i]值的大小对a中记录进行重新排列,试编写算 法实现上述排序方法。
C语言实战105例
- C语言实战105例 第1部分 基础篇 实例1 一个价值“三天”的BUG 2 实例2 灵活使用递增(递减)操作符 5 实例3 算术运算符计算器 7 实例4 逻辑运算符计算器 9 实例5 IP地址解析 11 实例6 用if…else语句解决奖金发放问题 13 实例7 用for循环模拟自由落体 16 实例8 用while语句求n! 19 实例9 模拟银行常用打印程序 22 实例10 使用一维数组统计选票 26 实例11 使用二维数组统计学生成绩 29 实例12 简单的计算器
countingsort
- 在较小集中范围,N个待排序的元素,比A[i]小的元素个数K,用于实现最基本的计数排序-Concentrated in a smaller scope, N months to sort the elements to be more than A [i] the small number of elements of K, used to achieve the most basic sort count
sorting
- 按照TAOCP一书编写的排序算法。 其中实现了计数、选择、冒泡、直接插入与SHELL插入算法。-TAOCP a book prepared in accordance with the sorting algorithm. Which achieved a count, selection, bubble, and SHELL inserted directly into the algorithm.
dui
- 用基于变治法的堆排序算法对任意一组给定的数据进行排序 设计与实现堆排序算法; 2)待排序的数据可以手工输入(通常规模比较小,10个数据左右),用以检测程序的正确性;也可以计算机随机生成(通常规模比较大,1500-3000个数据左右),用以检验(用计数法)堆排序算法的时间效率。-Variable-based treatment of the heap sorting algorithm to a set of arbitrary data set to sort the design an
c
- 5个很经典的C程序,包括排序、计数和输入序号等等,而且这些程序利用指针操作,是编成中不可缺少的部分-5 is a classic C procedures, including sorting, counting and input the serial number, etc., and these procedures make use of pointer operations, is into an indispensable part of
SortProject
- 自己写的所有的内部排序算法,包括冒泡排序,插入排序,选择排序,快速排序,堆排序,shell排序,归并排序,计数排序,基数排序等-all the internal sort, including bubble, insert, select, quick, heap, shell, merge, counting, radix sort
wordscount
- 在文件x.txt中读取内容,并给文本进行单词计数。之后,对个单词排序,然后写入文件x1.txt中。-In x.t files, and read the content xt word count for text. In a word, sorting, then write files, TXT clamps its x1.
MyProjects
- 这是在vc++6.0下编写的排序算法,总共有5个,注释比较详细。有简单排序,插入排序,堆排序,快速排序,还有计数排序-This is the sort algorithm written in vc 6.0, a total of five, comments are more detailed。welcome to download
sublex.tar
- SPOJ上的SUBLEX,后缀自动机实现,可以作为后缀自动机的模板,包含计数排序和dfs两种更新方式实现。-The problem SUBLEX on SPOJ, implemented by SuffixAutomaton, can be used as the template of SAM(SuffixAutomaton)
sort_number
- 主要实现各种数字的排序功能, 使用快速排序\计数排序\基数排序等4种排序方法, 并且计时进行比较, 有一个比较友好的界面-Sort of a variety of digital functions, quicksort \ counting the sorting \ radix sort sort method, and timing are compared, there is a more friendly interface
CompareString
- 外部排序,使用计数排序和桶排序解决字符串匹配问题-External sorting, counting sort and bucket sort using string matching problem solving
A2
- 利用归并排序算法,实现逆序数的计数,sort and count,用Java实现-Use merge sort algorithm, count the number in reverse order, sort and count, implemented in Java
Sort
- 一个排序程序,包括直接插入排序,起泡排序,堆排序,二路归并排序,锦标赛排序,计数排序等。-A sort of procedures, including the direct insertion sort, bubble sort, heap sort, two way merge sort, championship sort, counting sort, etc..
Quicksort-and-Randomized-Quicksort
- 快速排序与随机快速排序,并且解决问题,计数其中重复排序次数与最大最小次数-3. Implement Quicksort and Randomized Quicksort. Answer the following questions. (1) How many comparisons will Quicksort do on a list of n elements that all have the same value? (2) What are the maximum and minimu