资源列表
[数据结构常用算法] charu
说明:有一个已经有序的数据序列,要求在这个已经排好的数据序列中插入一个数,但要求插入后此数据序列仍然有序,这个时候就要用到一种新的排序方法——插入排序法,插入排序的基本操作就是将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据,算法适用于少量数据的排序,时间复杂度为O(n^2)。是稳定的排序方法。插入算法把要排序的数组分成两部分:第一部分包含了这个数组的所有元素,但将最后一个元素除外,而第二部分就只包含这一个元素。在第一部分排序后,再把这个最后元素插入到此刻已是有序的第一部分<刘大> 在 2025-06-14 上传 | 大小:1kb | 下载:0
[数据结构常用算法] Data-structures-courseware
说明:严蔚敏编写的数据结构课件,ppt格式,包含习题集-Written by Yan Wei-min data structures courseware ppt format, and contains problem sets<求知者> 在 2025-06-14 上传 | 大小:2.56mb | 下载:0
[数据结构常用算法] hashtable
说明:对数据结构课所学的哈希表进行了详细的实现和分析。哈希表是根据设定的哈希函数H(key)和处理冲突方法将一组关键字映象到一个有限的地址区间上,并以关键字在地址区间中的象作为记录在表中的存储位置,这种表称为哈希表或散列,所得存储位置称为哈希地址或散列地址。作为线性数据结构与表格和队列等相比,哈希表无疑是查找速度比较快的一种。-a code about the hashtable,you can use it in your learning of the hash algorism<赵璐璐> 在 2025-06-14 上传 | 大小:12.58mb | 下载:0
[数据结构常用算法] sort_compare
说明:比较了常用的内部排序算法在原始数据是正序、乱序、逆序时的移动次数和比较次数。-This paper uses commonly used internal sorting algorithm to compare the number of moves and comparisons when the original data is positive-sequence, out of order and in reverse order.<flyoverls> 在 2025-06-14 上传 | 大小:2kb | 下载:0
[数据结构常用算法] Graph-traversal
说明:以邻接多重表为存储结构,实现无向连通图的深度优先和广度优先遍历。-This paper is to solve the traversal of the graph using DFS BFS<flyoverls> 在 2025-06-14 上传 | 大小:2kb | 下载:0
[数据结构常用算法] parking-Manage
说明:用数据结构知识模拟计算停车场里汽车的停车时间及费用。-Using the knowledge of data structures to simulate and calculate the time and cost of car parking in the parking lot.<flyoverls> 在 2025-06-14 上传 | 大小:2kb | 下载:0
[数据结构常用算法] DecisionTree
说明: 一个实现决策树的小算法,是实现的源代码- a decision tree<李念> 在 2025-06-14 上传 | 大小:19kb | 下载:0
[数据结构常用算法] huiwen
说明:利用栈和队列的原理设计一个程序,对输入的字符串进行检测,以判断该字符串是否是回文数据,并输出判断结果。如:“abcxcba”或“abccba”都是回文数据。-Stack and queue principle to design a program to detect the input string to determine whether the string is a palindrome data, and outputs the judgment result. Such as: "a<6218346> 在 2025-06-14 上传 | 大小:10kb | 下载:0