從上到下打印二叉樹,同節點的從左到右。

public class TreeNode(){ public int val; publicTreeNode Left; public TreeNode Right; public TreeNode(int x){ val=x } } 局部變量temp獲取當前結點,queue獲取此結點下的左右結點。循環遍歷直到queue爲空
相關文章
相關標籤/搜索