摘要: 题目链接 226. 翻转二叉树 思路 将左右子树抽象为两个结点,直接进行交换。然后再递归左右子树。 代码 class Solution { public TreeNode invertTree(TreeNode root) { if(root == null){ return null; } Tre 阅读全文
posted @ 2023-01-19 19:17 Frodo1124 阅读(19) 评论(0) 推荐(0) 编辑