Skip to content

Commit bf367ca

Browse files
committed
2022.3.11 up
1 parent 9d95554 commit bf367ca

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

leetcode/刷题册.md

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3152,13 +3152,61 @@ union 函数:合并两个顶点,并将他们的根结点保持一致。如
31523152

31533153
#### [88. 合并两个有序数组](https://leetcode-cn.com/problems/merge-sorted-array/)没问题
31543154

3155-
#### [91. 解码方法](https://leetcode-cn.com/problems/decode-ways/) 明早做一下 就是超出时间限制了 没什么问题 用动态规划
3155+
#### [91. 解码方法](https://leetcode-cn.com/problems/decode-ways/) 明早做一下 就是超出时间限制了 没什么问题 用动态规划 仔细看题
31563156

31573157
#### [94. 二叉树的中序遍历](https://leetcode-cn.com/problems/binary-tree-inorder-traversal/)不浪费时间了 就
31583158

3159+
#### [98. 验证二叉搜索树](https://leetcode-cn.com/problems/validate-binary-search-tree/)利用树的特性 进行比对 同时要看清楚参数选取的范围 注意
31593160

3161+
#### [101. 对称二叉树](https://leetcode-cn.com/problems/symmetric-tree/)没问题的
31603162

3163+
#### [102. 二叉树的层序遍历](https://leetcode-cn.com/problems/binary-tree-level-order-traversal/)秒了
31613164

3165+
#### [103. 二叉树的锯齿形层序遍历](https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal/)秒了
3166+
3167+
#### [104. 二叉树的最大深度](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)有点慢 还是需要进一步优化
3168+
3169+
#### [105. 从前序与中序遍历序列构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)又是这个老题目 兄弟好好想想 注意细节啊兄弟 就是细节的问题
3170+
3171+
#### [108. 将有序数组转换为二叉搜索树](https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree/)太简单了
3172+
3173+
#### [116. 填充每个节点的下一个右侧节点指针](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node/) 没问题的
3174+
3175+
#### [118. 杨辉三角](https://leetcode-cn.com/problems/pascals-triangle/)想看下这个题有没有dp的解法 并没有好像
3176+
3177+
#### [121. 买卖股票的最佳时机](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/)没问题的
3178+
3179+
#### [122. 买卖股票的最佳时机 II](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/)没问题
3180+
3181+
#### [124. 二叉树中的最大路径和](https://leetcode-cn.com/problems/binary-tree-maximum-path-sum/)X 再想想 ==不该不会的 多看看==
3182+
3183+
#### [125. 验证回文串](https://leetcode-cn.com/problems/valid-palindrome/)没问题
3184+
3185+
#### [127. 单词接龙](https://leetcode-cn.com/problems/word-ladder/)==3/12再看 今天先不看了==
3186+
3187+
#### [130. 被围绕的区域](https://leetcode-cn.com/problems/surrounded-regions/)没问题
3188+
3189+
3190+
3191+
3192+
3193+
3194+
3195+
3196+
3197+
3198+
3199+
3200+
3201+
# ACM模式训练
3202+
3203+
[牛客竞赛_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ (nowcoder.com)](https://ac.nowcoder.com/acm/contest/5657)
3204+
3205+
要会输入 输出
3206+
3207+
[ACM模式的输入输出处理(java篇) - 简书 (jianshu.com)](https://www.jianshu.com/p/4be070789f7a)
3208+
3209+
过几天去找找数组和树这些的输入输出 加油曾
31623210

31633211

31643212

0 commit comments

Comments
 (0)