Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wisdompeak authored Jun 11, 2022
1 parent 2825052 commit 1816cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Design/2296.Design-a-Text-Editor/Readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### 2296.Design-a-Text-Editor

#### 解法1:链表
本题需要有一种线性的数据结构,能有一个灵活的指针,可以o(1)地删除指向的内部元素,并且依然可以o(1)的时间左移右移。显然这就是链表。
本题需要有一种线性的数据结构,能有一个灵活的指针,可以o(1)地删除和添加指向的内部元素,并且依然可以o(1)的时间左移右移。显然这就是链表。

C++里面自带链表结构:
```cpp
Expand Down

0 comments on commit 1816cbb

Please sign in to comment.