资源列表
[数据结构常用算法] cycle_list
说明:一个c语言写的 数据结构 单向循环链表 的简单例子。 -A c language data structure simple example of one-way circular list.<xiaodong> 在 2025-06-19 上传 | 大小:1kb | 下载:0
[数据结构常用算法] time
说明:包含各种经典排序算法的实现和模拟时间比较,包括各种shell排序、插入排序、选择排序、起泡排序、快速排序、ADT队列排序等等,是初学数据结构和算法的最好实例和参考。-Containing various classical sorting algorithm implementation and simulation time comparison, including various shell sort, insertion sort, selection sort, bubble sort<pujialie> 在 2025-06-19 上传 | 大小:41kb | 下载:0
[数据结构常用算法] liantongtu
说明:本程序是学习图论连通图的极佳案例,可以清楚地进行任意建立集合图,并且随意选取点来自动进行判断连通。-This program is a connected graph graph theory learning an excellent example, one can clearly create a collection of arbitrary figure, and selected at random points automatically determine connectivit<pujialie> 在 2025-06-19 上传 | 大小:1.98mb | 下载:0
[数据结构常用算法] quickSortApp
说明:对经典的递归快速排序采用选择法和栈进行优化,提高了算法的运行效率,使得对快速排序的理解更加深入。-The classical recursive quick sort and stack using the selection method to optimize and improve the operating efficiency of the algorithm, such that for more in-depth understanding of quick sort.<刘荣荣> 在 2025-06-19 上传 | 大小:2.85mb | 下载:0
[数据结构常用算法] bigNumMult
说明:计算1万位以上的大整数乘法,有蛮力法和分治法-Calculation 10,000 more than the large integer multiplication with brute force method and the divide and conquer<Billie> 在 2025-06-19 上传 | 大小:28kb | 下载:0
[数据结构常用算法] ShellSort
说明:首先取一个整数 gap < n(待排序记录数) 作为间隔, 将全部记录分为 gap 个子序列, 所有距离为 gap 的记录放在同一个子序列中 在每一个子序列中分别施行直接插入排序。 然后缩小间隔 gap, 例如取 gap = gap/2 重复上述的子序列划分和排序工作,直到最后取gap = 1, 将所有记录放在同一个序列中排序为止-First, take an integer gap < n (the number of records to be sorted) as t<郑白> 在 2025-06-19 上传 | 大小:1kb | 下载:0