从零开始的数据结构Ep1-算法与复杂度

零、前言

📕欢迎访问

个人主页:conqueror712.github.io/

Github主页:github.com/Conqueror71...

笔者注

本文,乃至本系列是我用于辅助自己学习的产物,难免会有些地方写的不如书本上那么精确,更多是对于知识结构的梳理以及自己的理解,毕竟不是要做一个"电子版的书本",不会面面俱到。不过也请感兴趣的读者们放心,省略掉的重要内容,文中都会有标识,如今无论是搜索引擎还是语言模型,想必都可以很快地解决疑惑,感兴趣的话可以自行查找。

另外,我会将我自己梳理的知识结构图附上,以便大家能更加一目了然地理解知识点之间存在的关系,在这其中可能会有一些理解不到位,或者错误的内容,烦请大家指出,这样一来也能更好地帮助其他有需要的人。关于每章节的课后习题,我打算在有需要的时候做成视频讲解放在 Bilibili 上,供有需要的读者朋友们参考。本文对应视频:✍️相关练习讲解视频

一、算法

既然我们常说 DSA(Data Structure + Algorithm = Program),那么,什么是算法?

  • 是指基于特定的计算模型,旨在解决某一信息处理问题而设计的一个指令序列。

算法需要具备哪些要素?

  • 输入与输出:不解释
  • 基本操作:字面意思,不解释
  • 确定性和可行性:算法应该可以被描述为由若干语义明确的基本操作组成的指令序列,且每一基本操作在对应的计算模型中均可实现
  • 有穷性和正确性:任意算法都应在执行有限次基本操作之后终止,并给出能够符合给定问题下的正确输出
  • 退化与鲁棒性:实用的算法应能够处理各种极端的输入实例,这里的极端情况就是所谓退化的情况,而算法为了能够尽可能充分地应对此类情况所具有的性质被称为鲁棒性
  • 重用性:算法的总体框架能否便捷地推广至其他场合

算法效率涉及哪几个方面呢?

  • 可计算性:顾名思义,例如无休无止的程序就不具有可计算性
  • 难解性:有些算法虽然满足有穷性,但是实际上花费的时间开销太大,这也属于难解性问题
  • 计算效率:主要从时间和空间这两个层面来衡量计算效率
  • 数据结构:合理的数据结构可以帮助设计出更加优秀的程序

二、复杂度

  • 时间复杂度

    从保守估计的角度出发,在规模为 n 的所有输入中选择执行时间最长者 作为 T(n),并以 T(n) 度量该算法的时间复杂度

  • 空间复杂度

    与时间复杂度类似地,算法所需存储空间的多少用空间复杂度来衡量,另外,时间复杂度本身就是空间复杂度的一个天然的上界

  • 渐进复杂度

    渐进复杂度是渐进分析的产物,这是一种着眼长远、更为注重时间复杂度的总体变化趋势和增长速度的策略。为此,我们将引入三种记号:

    • O 记号:作为 T(n) 的渐进上界,具体定义如下:

      若存在常数 <math xmlns="http://www.w3.org/1998/Math/MathML"> c c </math>c 及函数 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) f(n) </math>f(n),

      <math xmlns="http://www.w3.org/1998/Math/MathML"> s . t . s.t. </math>s.t. 对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ n > > 2 ∀\ n>>2 </math>∀ n>>2 都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) ≤ c ⋅ f ( n ) T(n) ≤ c·f(n) </math>T(n)≤c⋅f(n),(此处的 <math xmlns="http://www.w3.org/1998/Math/MathML"> > > >> </math>>> 为远大于的意思)

      则可认为,在 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 足够大之后, <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) f(n) </math>f(n) 给出了 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) T(n) </math>T(n) 增长速度的一个渐进上界

      此时,记为 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) = O ( f ( n ) ) T(n)=O(f(n)) </math>T(n)=O(f(n))

      另外还可得到两个性质:

      1. 忽略常数 :对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ ∀ </math>∀ 常数 <math xmlns="http://www.w3.org/1998/Math/MathML"> c > 0 c>0 </math>c>0,都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( f ( n ) ) = O ( c ⋅ f ( n ) ) O(f(n))=O(c·f(n)) </math>O(f(n))=O(c⋅f(n))
      2. 抓大头 :对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ ∀ </math>∀ 常数 <math xmlns="http://www.w3.org/1998/Math/MathML"> a > b > 0 a>b>0 </math>a>b>0,都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n a + n b ) = O ( n a ) O(n^a+n^b)=O(n^a) </math>O(na+nb)=O(na)
    • Ω 记号:作为 T(n) 的渐进下届,具体定义如下:

      若存在常数 <math xmlns="http://www.w3.org/1998/Math/MathML"> c c </math>c 及函数 <math xmlns="http://www.w3.org/1998/Math/MathML"> g ( n ) g(n) </math>g(n),

      <math xmlns="http://www.w3.org/1998/Math/MathML"> s . t . s.t. </math>s.t. 对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ n > > 2 ∀\ n>>2 </math>∀ n>>2 都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) ≥ c ⋅ g ( n ) T(n) ≥ c·g(n) </math>T(n)≥c⋅g(n),

      则可认为,在 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 足够大之后, <math xmlns="http://www.w3.org/1998/Math/MathML"> g ( n ) g(n) </math>g(n) 给出了 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) T(n) </math>T(n) 增长速度的一个渐进下界

      此时,记为 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) = Ω ( g ( n ) ) T(n)=Ω(g(n)) </math>T(n)=Ω(g(n))

    • Θ 记号:作为 T(n) 的渐进确界,是对算法复杂度的准确估计------对于规模为 n 的任何输入,算法的运行时间 T(n) 都与 Θ(h(n)) 同阶,具体定义如下:

      若恰好 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) = g ( n ) f(n)=g(n) </math>f(n)=g(n),若存在正常数 <math xmlns="http://www.w3.org/1998/Math/MathML"> c 1 < c 2 c_1<c_2 </math>c1<c2 和函数 <math xmlns="http://www.w3.org/1998/Math/MathML"> h ( n ) h(n) </math>h(n),

      <math xmlns="http://www.w3.org/1998/Math/MathML"> s . t . s.t. </math>s.t. 对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ n > > 2 ∀\ n>>2 </math>∀ n>>2 都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> c 1 ⋅ h ( n ) ≤ T ( n ) ≤ c 2 ⋅ h ( n ) c_1·h(n) ≤ T(n) ≤ c_2·h(n) </math>c1⋅h(n)≤T(n)≤c2⋅h(n),

      则可认为,在 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 足够大之后, <math xmlns="http://www.w3.org/1998/Math/MathML"> h ( n ) h(n) </math>h(n) 给出了 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) T(n) </math>T(n) 增长速度的一个渐进确界

      此时,记为 <math xmlns="http://www.w3.org/1998/Math/MathML"> T ( n ) = Θ ( h ( n ) ) T(n)=Θ(h(n)) </math>T(n)=Θ(h(n))

    我们可以用一个图来直观的感受这三种记号之间的关联:

  • 复杂度分析

    典型的复杂度层次:

    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( 1 ) O(1) </math>O(1)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( log ⁡ log ⁡ n ) O(\log\log n) </math>O(loglogn)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( log ⁡ n ) O(\log n) </math>O(logn)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n ) O(\sqrt{n}) </math>O(n )
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n ) O(n) </math>O(n)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n log ⁡ log ⁡ n ) O(n\log\log n) </math>O(nloglogn)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n log ⁡ n ) O(n\log n) </math>O(nlogn)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n 2 ) O(n^2) </math>O(n2)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n 3 ) O(n^3) </math>O(n3)
    • <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( 2 n ) O(2^n) </math>O(2n)
  • 输入规模

    严格地说,所谓待计算问题的输入规模,应严格定义为用以描述输入所需的空间规模

    比如,若要统计任意 <math xmlns="http://www.w3.org/1998/Math/MathML"> n ∈ N + n∈N_+ </math>n∈N+ 的二进制展开中 <math xmlns="http://www.w3.org/1998/Math/MathML"> 1 1 </math>1 的个数,显然是通过遍历来统计的,通常我们会默认用 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 的大小作为输入的规模,从而得到 <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( n ) O(n) </math>O(n) 的复杂度,但这是错误的,我们称之为伪复杂度(本例中就是伪线性复杂度)。

    应当用 <math xmlns="http://www.w3.org/1998/Math/MathML"> n n </math>n 的二进制展开的位数 <math xmlns="http://www.w3.org/1998/Math/MathML"> r = 1 + ⌊ log ⁡ 2 n ⌋ r=1+\lfloor \log_2n\rfloor </math>r=1+⌊log2n⌋ 作为输入的规模,从而得到正确的 <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( r ) O(r) </math>O(r) 复杂度。

补充概念:数据集合及其对应的操作可超脱于具体的程序设计语言、具体的实现方式,即构成所谓的抽象数据类型(Abstract Data Type, ADT)。


✍️相关练习讲解视频

Question 1: 试证明,在用对数函数界定渐进复杂度时,常底数的取值无所谓。

证明:

设,某函数的上界可以表示为 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) = O ( log ⁡ a n ) , ( a > 1 , a 为常数 ) f(n)=O(\log_an),\ (a>1, a\ 为常数) </math>f(n)=O(logan), (a>1,a 为常数)

则 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) = O ( log ⁡ a n ) = O ( ln ⁡ a ln ⁡ n ) = O ( ln ⁡ b ln ⁡ a × ln ⁡ n ln ⁡ b ) = O ( ln ⁡ b ln ⁡ a × log ⁡ b n ) = O ( log ⁡ b n ) f(n)=O(\log_an)=O(\frac{\ln a}{\ln n})=O(\frac{\ln b}{\ln a}\times\frac{\ln n}{\ln b})=O(\frac{\ln b}{\ln a}\times\log_bn)=O(\log_bn) </math>f(n)=O(logan)=O(lnnlna)=O(lnalnb×lnblnn)=O(lnalnb×logbn)=O(logbn)

即 <math xmlns="http://www.w3.org/1998/Math/MathML"> O ( log ⁡ a n ) = O ( log ⁡ b n ) , O(\log_an)=O(\log_bn),\ </math>O(logan)=O(logbn), 证毕


Question 2: 试证明,对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ ε > 0 ∀ε>0 </math>∀ε>0,都有 <math xmlns="http://www.w3.org/1998/Math/MathML"> log ⁡ n = O ( n ε ) \log n=O(n^ε) </math>logn=O(nε)。

证明:

直观地,我们知道 <math xmlns="http://www.w3.org/1998/Math/MathML"> ln ⁡ x \ln x </math>lnx 的增长速度是慢于 <math xmlns="http://www.w3.org/1998/Math/MathML"> x x </math>x 的

于是有 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ ε > 0 , ∃ M > 0 s . t . n > M 时 , 有 ln ⁡ n < ε n ∀ε>0,\ ∃M>0\ s.t.\ n>M\ 时,\ 有\ \ln n<εn\ </math>∀ε>0, ∃M>0 s.t. n>M 时, 有 lnn<εn ①

令 <math xmlns="http://www.w3.org/1998/Math/MathML"> N = e M , N=e^M, </math>N=eM, 当 <math xmlns="http://www.w3.org/1998/Math/MathML"> n > N , n>N, </math>n>N, 即 <math xmlns="http://www.w3.org/1998/Math/MathML"> ln ⁡ n > M \ln n > M </math>lnn>M(利用 <math xmlns="http://www.w3.org/1998/Math/MathML"> ln ⁡ x \ln x </math>lnx 的单调性)

总有 <math xmlns="http://www.w3.org/1998/Math/MathML"> ln ⁡ ( ln ⁡ n ) < ε ( ln ⁡ n ) \ln(\ln n)<ε(\ln n) </math>ln(lnn)<ε(lnn)(利用 ① 式)

同时取 <math xmlns="http://www.w3.org/1998/Math/MathML"> e e </math>e 为底数,得 <math xmlns="http://www.w3.org/1998/Math/MathML"> e ln ⁡ ( ln ⁡ n ) < e ε ln ⁡ n e^{\ln(\ln n)}<e^{ε\ln n} </math>eln(lnn)<eεlnn,即 <math xmlns="http://www.w3.org/1998/Math/MathML"> ln ⁡ n < n ε \ln n<n^ε </math>lnn<nε,则对于 <math xmlns="http://www.w3.org/1998/Math/MathML"> ∀ ε > 0 ∀ε>0 </math>∀ε>0, <math xmlns="http://www.w3.org/1998/Math/MathML"> log ⁡ n = O ( n ε ) \log n=O(n^ε) </math>logn=O(nε),证毕


Question 3: 若 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) = O ( n 2 ) 且 g ( n ) = O ( n ) f(n)=O(n^2)且g(n)=O(n) </math>f(n)=O(n2)且g(n)=O(n),试证明 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) × g ( n ) = O ( n 3 ) f(n)\times g(n)=O(n^3) </math>f(n)×g(n)=O(n3)

证明:

由大 O 记号定义得,

<math xmlns="http://www.w3.org/1998/Math/MathML"> ∃ c 1 > 0 , N 1 > 0 , s . t . n > N 1 时总有 f ( n ) < c 1 n 2 ∃c_1>0,\ N_1>0,\ s.t.\ n>N_1时总有f(n)<c_1n^2 </math>∃c1>0, N1>0, s.t. n>N1时总有f(n)<c1n2

<math xmlns="http://www.w3.org/1998/Math/MathML"> ∃ c 2 > 0 , N 2 > 0 , s . t . n > N 2 时总有 g ( n ) < c 2 n ∃c_2>0,\ N_2>0,\ s.t.\ n>N_2时总有g(n)<c_2n </math>∃c2>0, N2>0, s.t. n>N2时总有g(n)<c2n

令 <math xmlns="http://www.w3.org/1998/Math/MathML"> c = c 1 c 2 c=c_1c_2 </math>c=c1c2, <math xmlns="http://www.w3.org/1998/Math/MathML"> N = m a x ( N 1 , N 2 ) N=max(N_1, N_2) </math>N=max(N1,N2)

则当 <math xmlns="http://www.w3.org/1998/Math/MathML"> n > N n>N </math>n>N 时,总有 <math xmlns="http://www.w3.org/1998/Math/MathML"> f ( n ) × g ( n ) < c n 3 = O ( n 3 ) f(n)\times g(n)<cn^3=O(n^3) </math>f(n)×g(n)<cn3=O(n3)

相关推荐
szuzhan.gy20 分钟前
DS查找—二叉树平衡因子
数据结构·c++·算法
一只码代码的章鱼1 小时前
排序算法 (插入,选择,冒泡,希尔,快速,归并,堆排序)
数据结构·算法·排序算法
青い月の魔女1 小时前
数据结构初阶---二叉树
c语言·数据结构·笔记·学习·算法
我要出家当道士2 小时前
Nginx单向链表 ngx_list_t
数据结构·nginx·链表·c
林的快手2 小时前
209.长度最小的子数组
java·数据结构·数据库·python·算法·leetcode
千天夜2 小时前
多源多点路径规划:基于启发式动态生成树算法的实现
算法·机器学习·动态规划
从以前2 小时前
准备考试:解决大学入学考试问题
数据结构·python·算法
.Vcoistnt3 小时前
Codeforces Round 994 (Div. 2)(A-D)
数据结构·c++·算法·贪心算法·动态规划
ALISHENGYA3 小时前
全国青少年信息学奥林匹克竞赛(信奥赛)备考实战之分支结构(实战训练三)
数据结构·c++·算法·图论
我码玄黄5 小时前
正则表达式优化之算法和效率优化
前端·javascript·算法·正则表达式