大话数据结构 读书笔记
大话数据结构 读书笔记
1. 绪论
逻辑结构
- 集合结构
- 线性结构
- 树形结构
- 图形结构
物理结构
- 顺序存储结构
- 链接存储结构
2. 算法
算法特征
- 输入输出
- 有穷性
- 确定性
- 可行性
算法时间复杂度
常数阶 O(1)
线性阶 O(n)
对数阶 O(logn)
1 | int count =1; |
${2^x} = n => x = log_2n$
平方阶 $O({n^2})$
1 | int i,j; |
$n+(n-1)+(n-2)+{\cdots}+1 =\frac{n(n+1)}{2}=\frac{n^2}{2}+\frac{n}{2}$
$O(n^2)$
常见时间复杂度
$O(1) < O(logn) < O(n) < O(nlogn) < O(n^2) < O(n^3) < O(2^n)< O(n!) < O(n^n)$
3. 线性表
Here is a footnote reference,[^1] and another.[^longnote]
Endnotes
[^1]: Here is the footnote.
[^longnote]: Here’s one with multiple blocks.
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Zepung🐉Blog!