Skip to content

Commit 201f089

Browse files
committed
feat: add solutions to lc problem: No.0707
No.0707.Design Linked List
1 parent 2bd551c commit 201f089

File tree

8 files changed

+805
-129
lines changed

8 files changed

+805
-129
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,15 @@
4949
- [乘积小于 K 的子数组](/solution/0700-0799/0713.Subarray%20Product%20Less%20Than%20K/README.md) - 双指针
5050
- [位 1 的个数](/solution/0100-0199/0191.Number%20of%201%20Bits/README.md) - 位运算、lowbit
5151
- [合并区间](/solution/0000-0099/0056.Merge%20Intervals/README.md) - 区间合并
52-
5352
<!-- 排序算法、待补充 -->
5453

54+
<!--
55+
### 2. 数据结构
56+
57+
- [设计链表](/solution/0700-0799/0707.Design%20Linked%20List/README.md) - 单链表、指针引用、数组实现
58+
-->
59+
60+
5561
### 2. 搜索
5662

5763
- [图像渲染](/solution/0700-0799/0733.Flood%20Fill/README.md)- BFS、DFS、Flood Fill 算法、连通性模型

README_EN.md

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ Complete solutions to [LeetCode](https://leetcode.com/problemset/all/), [LCOF](h
4949
- [Number of 1 Bits](/solution/0100-0199/0191.Number%20of%201%20Bits/README_EN.md) - Bit manipulation, Lowbit
5050
- [Merge Intervals](/solution/0000-0099/0056.Merge%20Intervals/README_EN.md) - Merge intervals
5151

52+
<!--
53+
### 2. Data Structures
54+
55+
- [Design Linked List](/solution/0700-0799/0707.Design%20Linked%20List/README_EN.md) - Linked List, Pointer, Array
56+
-->
57+
5258
### 2. Search
5359

5460
- [Flood Fill](/solution/0700-0799/0733.Flood%20Fill/README_EN.md) - BFS, DFS, Flood fill

0 commit comments

Comments
 (0)