leetcode之N-ary Tree Level Order Traversal(429)

題目: 給定一個N叉樹,返回其節點值的層序遍歷。 (即從左到右,逐層遍歷)。   例如,給定一個 3叉樹 :     返回其層序遍歷: [ [1], [3,2,4], [5,6] ]   說明: 樹的深度不會超過 1000。 樹的節點總數不會超過 5000。 python代碼: """ # Definition for a Node. class Node(obje
相關文章
相關標籤/搜索