Skip to content

Commit 4d33304

Browse files
lufftwclaude
andcommitted
docs(monotonic_deque): Phase 8 - Add navigation to mkdocs.yml
- Add Monotonic Deque to mkdocs.yml navigation under Patterns section - Add MonotonicDeque entry to docs/patterns/README.md pattern index - Add MonotonicDeque to README.md pattern documentation table - Add MonotonicDeque to README_zh-TW.md pattern documentation table 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 0e55ed5 commit 4d33304

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,7 @@ Each pattern provides **two learning paths**:
436436
| `TreeDP` | 💡 [Intuition](docs/patterns/tree_dp/intuition.md) · 🛠️ [Templates](docs/patterns/tree_dp/templates.md) | LeetCode 337, 124, 968 |
437437
| `BitmaskDP` | 💡 [Intuition](docs/patterns/bitmask_dp/intuition.md) · 🛠️ [Templates](docs/patterns/bitmask_dp/templates.md) | LeetCode 78, 847, 1125 |
438438
| `StringDP` | 💡 [Intuition](docs/patterns/string_dp/intuition.md) · 🛠️ [Templates](docs/patterns/string_dp/templates.md) | LeetCode 1143, 72, 516, 10 |
439+
| `MonotonicDeque` | 💡 [Intuition](docs/patterns/monotonic_deque/intuition.md) · 🛠️ [Templates](docs/patterns/monotonic_deque/templates.md) | LeetCode 239, 1438, 862, 1499 |
439440
| `GridBFSMultiSource` | *coming soon* | LeetCode 994, 286, 542 |
440441
| `KWayMerge` | *coming soon* | LeetCode 23, 21, 88 |
441442
| `LinkedListInPlaceReversal` | *coming soon* | LeetCode 25, 206, 92 |

README_zh-TW.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ scripts\run_tests.bat 0001_two_sum
441441
| `TreeDP` | 💡 [直覺理解](docs/patterns/tree_dp/intuition.md) · 🛠️ [模板](docs/patterns/tree_dp/templates.md) | LeetCode 337, 124, 968 |
442442
| `BitmaskDP` | 💡 [直覺理解](docs/patterns/bitmask_dp/intuition.md) · 🛠️ [模板](docs/patterns/bitmask_dp/templates.md) | LeetCode 78, 847, 1125 |
443443
| `StringDP` | 💡 [直覺理解](docs/patterns/string_dp/intuition.md) · 🛠️ [模板](docs/patterns/string_dp/templates.md) | LeetCode 1143, 72, 516, 10 |
444+
| `MonotonicDeque` | 💡 [直覺理解](docs/patterns/monotonic_deque/intuition.md) · 🛠️ [模板](docs/patterns/monotonic_deque/templates.md) | LeetCode 239, 1438, 862, 1499 |
444445
| `GridBFSMultiSource` | *即將推出* | LeetCode 994, 286, 542 |
445446
| `KWayMerge` | *即將推出* | LeetCode 23, 21, 88 |
446447
| `LinkedListInPlaceReversal` | *即將推出* | LeetCode 25, 206, 92 |

docs/patterns/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Each pattern provides **two learning paths** to help you master the concepts:
4747
| `TreeDP` | 💡 [Intuition](tree_dp/intuition.md) · 🛠️ [Templates](tree_dp/templates.md) | Include/exclude, path contribution, multi-state | LeetCode 337, 124, 968 |
4848
| `BitmaskDP` | 💡 [Intuition](bitmask_dp/intuition.md) · 🛠️ [Templates](bitmask_dp/templates.md) | Subset enumeration, BFS with bitmask, set cover | LeetCode 78, 847, 1125 |
4949
| `StringDP` | 💡 [Intuition](string_dp/intuition.md) · 🛠️ [Templates](string_dp/templates.md) | LCS, edit distance, palindrome, regex matching | LeetCode 1143, 72, 516, 10 |
50+
| `MonotonicDeque` | 💡 [Intuition](monotonic_deque/intuition.md) · 🛠️ [Templates](monotonic_deque/templates.md) | Sliding window min/max, bounded range, prefix sum optimization | LeetCode 239, 1438, 862, 1499 |
5051
| `GridBFSMultiSource` | *coming soon* | Multi-source BFS on grids | LeetCode 994, 286, 542 |
5152
| `KWayMerge` | *coming soon* | Merge K sorted sequences | LeetCode 23, 21, 88 |
5253
| `LinkedListInPlaceReversal` | *coming soon* | In-place linked list reversal | LeetCode 25, 206, 92 |

mkdocs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ nav:
198198
- String DP:
199199
- Intuition: patterns/string_dp/intuition.md
200200
- Templates: patterns/string_dp/templates.md
201+
- Monotonic Deque:
202+
- Intuition: patterns/monotonic_deque/intuition.md
203+
- Templates: patterns/monotonic_deque/templates.md
201204
- 🧠 Mind Maps:
202205
- Overview: mindmaps/index.md
203206
- AI Analysis (English): mindmaps/neetcode-ontology-ai-en.md

0 commit comments

Comments
 (0)