摘要: 问题: 求二叉树的正反交替层序遍历。 第一层从左向右,第二次从右向左... Example 1: Input: root = [3,9,20,null,null,15,7] Output: [[3],[20,9],[15,7]] Example 2: Input: root = [1] Output 阅读全文
posted @ 2021-02-24 17:35 habibah_chang 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 问题: 求二叉树的层序遍历。 Example 1: Input: root = [3,9,20,null,null,15,7] Output: [[3],[9,20],[15,7]] Example 2: Input: root = [1] Output: [[1]] Example 3: Inpu 阅读全文
posted @ 2021-02-24 17:06 habibah_chang 阅读(53) 评论(0) 推荐(0) 编辑