From 33d7f8a2e51b7ffd82a6b62cd9696ab3af5e5261 Mon Sep 17 00:00:00 2001 From: KeiichiKasai <114374670+KeiichiKasai@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:35:50 +0800 Subject: [PATCH] fix: fixed the incorrect use of Chinese designators (#1224) --- docs/chapter_computational_complexity/time_complexity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_computational_complexity/time_complexity.md b/docs/chapter_computational_complexity/time_complexity.md index c1edeef81..93cce5b41 100755 --- a/docs/chapter_computational_complexity/time_complexity.md +++ b/docs/chapter_computational_complexity/time_complexity.md @@ -743,7 +743,7 @@ $$ $T(n)$ 是一次函数,说明其运行时间的增长趋势是线性的,因此它的时间复杂度是线性阶。 -我们将线性阶的时间复杂度记为 $O(n)$ ,这个数学符号称为大($O$ 记号 big-$O$ notation),表示函数 $T(n)$ 的渐近上界(asymptotic upper bound)。 +我们将线性阶的时间复杂度记为 $O(n)$ ,这个数学符号称为大$O$ 记号(big-$O$ notation),表示函数 $T(n)$ 的渐近上界(asymptotic upper bound)。 时间复杂度分析本质上是计算“操作数量 $T(n)$”的渐近上界,它具有明确的数学定义。