File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/algorithm/basic/iterative Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2828- [x] 半年零基础到 LeetCode 300 题,我的算法学习方法论: ✅ [ Post] ( https://dongxiaoran.com/algo/basic/intro/ )
2929- [x] 当我们谈论刷题时,到底在刷什么: ✅ [ Post] ( https://dongxiaoran.com/algo/basic/how/ )
3030- [x] 一题顶四题,一道题掌握 LinkedList 的 Iterative: ✅ [ Post] ( https://dongxiaoran.com/algo/basic/iterativelist/ ) ⭐️ [ Code] ( src/main/java/algorithm/basic/iterative )
31+ - [x] Tree 还可以这样 O(1) 空间遍历?四题带你深入理解 LinkedList 与 Tree 的关系: ✅ [ Post] ( https://dongxiaoran.com/algo/basic/treetolist/ ) ⭐️ [ Code] ( src/main/java/algorithm/basic/iterativetree )
3132
3233- [ ] Binary Search
3334
Original file line number Diff line number Diff line change 44
55/**
66 * Given a singly linked list L_0 → L_1 → … → L_{n-1} → L_n
7- * Reverse it to L_n → L_{n-1} → … → L_1 → L_0
7+ * Reverse it to L_0 → L_n → L_{n-1} → … → L_1 → L_0
88 */
99public class ReorderList {
1010 public void reorderList (ListNode head ) {
You can’t perform that action at this time.
0 commit comments