Loading

摘要: 175. 组合两个表 地址:https://leetcode-cn.com/problems/combine-two-tables/ //表1: Person // + + + //| 列名 | 类型 | //+ + + //| PersonId | int | //| FirstName | va 阅读全文
posted @ 2021-01-03 13:38 sstu 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 145. 二叉树的后序遍历 地址:https://leetcode-cn.com/problems/binary-tree-postorder-traversal/ //给定一个二叉树,返回它的 后序 遍历。 // // 示例: // // 输入: [1,null,2,3] // 1 // \ // 阅读全文
posted @ 2021-01-03 13:11 sstu 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 94. 二叉树的中序遍历 地址:https://leetcode-cn.com/problems/binary-tree-inorder-traversal/ //给定一个二叉树的根节点 root ,返回它的 中序 遍历。 // // 示例 1: // //输入:root = [1,null,2,3 阅读全文
posted @ 2021-01-03 13:01 sstu 阅读(69) 评论(0) 推荐(0) 编辑