Skip to content

Commit 8e21632

Browse files
authored
Update 双指针总结.md
1 parent 29ba4f4 commit 8e21632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/双指针总结.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ for (int i = 0; i < array.size(); i++) {
9090

9191
## 总结
9292

93-
本文中一共介绍了leetcode上九道使用双指针解决问题的经典题目,除了链表一些题目一定要使用双指针,其他题目都是使用双指针来提高效率,一般是将O(n^2)的时间复杂度,降为$O(n)$。
93+
本文中一共介绍了leetcode上九道使用双指针解决问题的经典题目,除了链表一些题目一定要使用双指针,其他题目都是使用双指针来提高效率,一般是将O(n^2)的时间复杂度,降为 $O(n)$
9494

9595
建议大家可以把文中涉及到的题目在好好做一做,琢磨琢磨,基本对双指针法就不在话下了。
9696

0 commit comments

Comments
 (0)