diff --git a/problems/0707.设计链表.md b/problems/0707.设计链表.md index 95560fb1..f6f16e30 100644 --- a/problems/0707.设计链表.md +++ b/problems/0707.设计链表.md @@ -152,6 +152,9 @@ private: }; ``` +* 时间复杂度: 涉及 `index` 的相关操作为 O(index), 其余为 O(1) +* 空间复杂度: O(n) + ## 其他语言版本