We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcbfe1 commit 5bb34e2Copy full SHA for 5bb34e2
README.md
@@ -69,7 +69,7 @@ left|right
69
70
## 运行时间
71
以二分查找为例,使用它可节省多少时间呢?简单查找诸葛地检查数字,如果列表包含100个数字,最多需要猜100次。
72
-换而言之嘴多需要猜测的次数与列表长度相同,这被称为线性时间(linear time),而二分查找则不同,如果列表包含100个元素
+换而言之最多需要猜测的次数与列表长度相同,这被称为线性时间(linear time),而二分查找则不同,如果列表包含100个元素
73
最多需要7次,如果列表包含40亿个数字,最多需猜32次,而分查找的运行时间为对数时间 `O(log)`
74
75
## 大O表示法
@@ -126,4 +126,4 @@ left|right
126
- [openset](https://github.com/openset)
127
128
## License
129
-MIT
+MIT
0 commit comments