From 8258c096fc907de1b64c116a82be63e7fcf615fe Mon Sep 17 00:00:00 2001 From: mba1398 <26516464+mba1398@users.noreply.github.com> Date: Sun, 10 Oct 2021 12:59:51 +0800 Subject: [PATCH] =?UTF-8?q?Update=20ch01:=20=E5=88=9D=E8=AF=86=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ch01: 初识数据库.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch01: 初识数据库.md b/ch01: 初识数据库.md index 094c6c0..a0baa04 100644 --- a/ch01: 初识数据库.md +++ b/ch01: 初识数据库.md @@ -366,7 +366,7 @@ MySQL索引的建立对于MySQL的高效运行是很重要的,索引可以大 拿汉语字典的目录页(索引)打比方,我们可以按拼音、笔画、偏旁部首等排序的目录(索引)快速查找到需要的字。 -索引创建了一种有序的数据结构,采用二分法搜索数据时,其复杂度为 ![1](http://latex.codecogs.com/svg.latex?\int_a^bf(x)\ dx) $log_2(N)$ ,1000多万的数据只要搜索23次,其效率是非常高效的。 +索引创建了一种有序的数据结构,采用二分法搜索数据时,其复杂度为 ![1](http://latex.codecogs.com/svg.latex?log_2(N)) $log_2(N)$ ,1000多万的数据只要搜索23次,其效率是非常高效的。 - 如何创建索引