Skip to content

Commit de18855

Browse files
committed
docs: 使用 Mermaid 展示学习路线
1 parent 5ec709a commit de18855

1 file changed

Lines changed: 18 additions & 6 deletions

File tree

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,24 @@ AI 刷题助手是本项目最核心的特色功能。它会**自动读取你当
124124

125125
## 🗺️ 学习路线
126126

127-
```
128-
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
129-
│ Python │───▶│ 数据结构 │───▶│ 核心算法 │───▶│ LeetCode │
130-
│ 基础语法 │ │ 掌握 │ │ 突破 │ │ 实战 │
131-
│ (1-2周) │ │ (2-3周) │ │ (3-4周) │ │ (2-3周) │
132-
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
127+
```mermaid
128+
flowchart LR
129+
python["阶段一<br/>Python 基础语法<br/>1-2 周"]
130+
structures["阶段二<br/>数据结构掌握<br/>2-3 周"]
131+
algorithms["阶段三<br/>核心算法突破<br/>3-4 周"]
132+
practice["阶段四<br/>LeetCode 实战<br/>2-3 周"]
133+
134+
python --> structures --> algorithms --> practice
135+
136+
classDef pythonStage fill:#e8f3ff,stroke:#1f6feb,color:#0b1f33,stroke-width:2px
137+
classDef structureStage fill:#eafbf0,stroke:#238636,color:#102a18,stroke-width:2px
138+
classDef algorithmStage fill:#fff4e5,stroke:#b35900,color:#3b2300,stroke-width:2px
139+
classDef practiceStage fill:#f4ecff,stroke:#8250df,color:#27143d,stroke-width:2px
140+
141+
class python pythonStage
142+
class structures structureStage
143+
class algorithms algorithmStage
144+
class practice practiceStage
133145
```
134146

135147
### 阶段一:Python 基础 (1-2 周) `./00_python_basics/`

0 commit comments

Comments
 (0)