【leetcode】102. 二叉樹的層次遍歷( Binary Tree Level Order Traversal )

題目描述 【leetcode】102. 二叉樹的層次遍歷( Binary Tree Level Order Traversal ) node 給定一個二叉樹,返回其按層次遍歷的節點值。 (即逐層地,從左到右訪問全部節點)。web 例如: 給定二叉樹: [3,9,20,null,null,15,7],svg 3 / \ 9 20 / \ 15 7 返回其層次遍歷結果:
相關文章
相關標籤/搜索