摘要: LeetCode 面试题32 I. 从上到下打印二叉树【剑指Offer】【Medium】【Python】【二叉树】【BFS】 问题 "力扣" 从上到下打印出二叉树的每个节点,同一层的节点按照从左到右的顺序打印。 例如: 给定二叉树: , 返回: 提示: 1. `节点总数 List[int]: imp 阅读全文
posted @ 2020-03-19 23:16 Wonz 阅读(134) 评论(0) 推荐(0) 编辑
摘要: LeetCode 0226. Invert Binary Tree翻转二叉树【Easy】【Python】【二叉树】【递归】 Problem "LeetCode" Invert a binary tree. Example: Input: Output: Trivia: This problem wa 阅读全文
posted @ 2020-03-19 22:06 Wonz 阅读(101) 评论(0) 推荐(0) 编辑
摘要: LeetCode 面试题27. 二叉树的镜像【剑指Offer】【Easy】【Python】【二叉树】【递归】 问题 "力扣" 请完成一个函数,输入一个二叉树,该函数输出它的镜像。 例如输入: 镜像输出: 示例 1: 限制: 代码地址 "GitHub链接" 阅读全文
posted @ 2020-03-19 21:35 Wonz 阅读(110) 评论(0) 推荐(0) 编辑
摘要: LeetCode 0409. Longest Palindrome最长回文串【Easy】【Python】【字符串】 Problem "LeetCode" Given a string which consists of lowercase or uppercase letters, find the 阅读全文
posted @ 2020-03-19 21:04 Wonz 阅读(143) 评论(0) 推荐(0) 编辑