二叉树
-
【每日阅读】2020年11月17日-验证二叉搜索树
思路:中序遍历时,BST是升序的。
-
【每日阅读】2020年11月12日-把二叉搜索树转换为累加树
链接 https://leetcode-cn.com/problems/convert-bst-to-greater-tree/ 新得 这道题还是使用二叉树的遍历思路就能解决,只不…
-
【每日阅读】2020年11月11日-从前序与中序遍历序列构造二叉树
链接 https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traver…
-
【每日阅读】2020年11月10日-二叉树原地展开为链表
链接 https://leetcode-cn.com/problems/flatten-binary-tree-to-linked-list/ 新得 这个题目注明了,需要原地展开,…
-
【每日阅读】2020年11月9日-反转二叉树
https://leetcode-cn.com/problems/invert-binary-tree/ 今天看到这个题下面有个注解: 这个问题是受到 Max Howell 的 原…