Skip to content

Commit 8f3e2d4

Browse files
publish blog: linked-list-代码模板与例题
1 parent 0ab7af0 commit 8f3e2d4

2 files changed

Lines changed: 17 additions & 20 deletions

File tree

public/blogs/index.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
[
2+
{
3+
"slug": "network-layer-routing-学习笔记",
4+
"title": "Network Layer Routing 学习笔记",
5+
"date": "2026-07-05",
6+
"summary": "> 主题:CST309 Computer Networks and Communication — Network Layer Part 2: Routing \n> 目标:理解 Router 如何转发 packet、Routing Table 如何产生与更新,以及 Dynamic Routing 中 Distance Vector 与 Link-State 两类协议的关系。",
7+
"tags": [],
8+
"category": "ComputerNetworks"
9+
},
210
{
311
"slug": "linked-list-代码模板与例题",
412
"title": "Linked List 代码模板与例题",
@@ -9,14 +17,6 @@
917
],
1018
"category": "algorithm"
1119
},
12-
{
13-
"slug": "network-layer-routing-学习笔记",
14-
"title": "Network Layer Routing 学习笔记",
15-
"date": "2026-07-05",
16-
"summary": "> 主题:CST309 Computer Networks and Communication — Network Layer Part 2: Routing \n> 目标:理解 Router 如何转发 packet、Routing Table 如何产生与更新,以及 Dynamic Routing 中 Distance Vector 与 Link-State 两类协议的关系。",
17-
"tags": [],
18-
"category": "ComputerNetworks"
19-
},
2020
{
2121
"slug": "为什么vibe-coding-的你一定要掌握-harness-engineering-驾驭工程",
2222
"title": "为什么vibe coding 的你一定要掌握 Harness Engineering(驾驭工程)",

public/blogs/linked-list-代码模板与例题/index.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -334,15 +334,12 @@ int main() {
334334
}
335335
```
336336
________________________________________
337-
2. 例题指引
338-
顺序 题目 难度 对应知识点
339-
1 203. Remove Linked List Elements
340-
Easy 删除指定值节点,对应 DeleteNode
341-
2 83. Remove Duplicates from Sorted List
342-
Easy 遍历链表,删除重复节点
343-
3 876. Middle of the Linked List
344-
Easy 链表遍历,理解 currNode = currNode->next
345-
4 206. Reverse Linked List
346-
Easy 修改 next 指针
347-
5 21. Merge Two Sorted Lists
348-
Easy 连接两个链表
337+
## 2. LeetCode 例题指引
338+
339+
| 顺序 | 题目 | 难度 | 对应知识点 |
340+
| --- | --- | --- | --- |
341+
| 1 | 203. Remove Linked List Elements | Easy | 删除指定值节点,对应 DeleteNode |
342+
| 2 | 83. Remove Duplicates from Sorted List | Easy | 遍历链表,删除重复节点 |
343+
| 3 | 876. Middle of the Linked List | Easy | 链表遍历,理解 currNode = currNode->next |
344+
| 4 | 206. Reverse Linked List | Easy | 修改 next 指针 |
345+
| 5 | 21. Merge Two Sorted Lists | Easy | 连接两个链表 |

0 commit comments

Comments
 (0)