摘要:
虽然只保留右节点,但是左节点也要向下遍历,因为可能到某一层,要用到左节点,所以要用一个数据结构记录本层有没有记录,如果记录过了就不用记录,向下遍历就行,没有记录就记录。递归的时候要同时记录层数 先dfs右节点,再左节点 阅读全文
摘要:
这个题,我称作:找兄弟,next就是兄弟 要弄清楚家族里辈分关系 Given a binary tree Populate each next pointer to point to its next right node. If there is no next right node, the n 阅读全文