资源列表
the-definition-of-order-form
- 如何建立顺序表及顺序表的操作比如插入删除查找-How to establish the order form and order operations such as inserting a table lookup, and so remove
Internal-sort-of-comparison-method
- 1)对以下9种内部排序算法进行比较:起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序、折半插入排序、二路插入排序、归并排序。 (2)待排序表的表长不小于 100;其中的数据要用伪随机数产生器产生;至少要用 5 组不同的输入数据做比较;比较的指标为关键字参加的比较次数和关键字的移动次数(关键字交换为 3 次移动)。 (3)针对不同的输入表长做试验,观测检查两个指标相对表长的变换情况。 (4)随机产生的数据保存到文件 input.txt 中,将各个算法的关键字比较次
data-structure-algorithms
- 用C++实现数据结构中的各种算法,内容非常详细,适合初学者-In C++ data structure in a variety of algorithms, very detailed, suitable for beginners
fuzzy-logic
- this file is fuzzy logic for fortran
f2-mp-2011041215-j
- this file is disperison model
quicksort
- 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。 -Quick sort (Quicksort) is a bubble sort of an improvement. CAR Hoare in 1962 by the mak
bottomupsort
- 冒泡排序,是指计算机的一种排序方法,它的时间复杂度为O(n^2),虽然不及堆排序、快速排序的O(nlogn,底数为2),但是有两个优点:1.“编程复杂度”很低,很容易写出代码;2.具有稳定性,这里的稳定性是指原序列中相同元素的相对顺序仍然保持到排序后的序列,而堆排序、快速排序均不具有稳定性。不过,一路、二路归并排序、不平衡二叉树排序的速度均比冒泡排序快,且具有稳定性,但速度不及堆排序、快速排序。-Bubble sort is a sorting method of the computer, i
datastucture_answer
- 严蔚敏:数据结构题集(c语言版)是经典的数据结构书籍,对于计算机专业的学生是必备的-Yan Wei-min: data structure problem sets (c-language version) is a classic data structure books for computer science students is essential
cpro
- 里面包含了五个c语言程序源代码,长途电话计费程序,用来计算长途电话费用问题。插入排序,将无序的数字排好序。比较大小的代码程序。-Which contains five c language source code, long distance telephone billing program used to calculate the long-distance telephone costs. Insertion sort, the number of unordered sorted. C
alog
- 学习计算机以来收集的大量算法、数据结构,,,,与实现-Since the collection of a large number of computer learning algorithms, data structures,,,, and to achieve
filetable_mange
- 数据结构实习,用C语言写的文件目录管理程序,模拟实现文件的创建,查找,删除等功能,能以凹入表形式输出所有文件的路径-Practice data structures, written in C language file directory management program to simulate the creation of the implementation file, find, delete and other functions, can all recessed table
Quick_Sort220762752011
- To understand a Basic data structural term in C named "Quick Sort".
