LeetCode刷题实战590:N 叉树的后序遍历
程序IT圈
共 1095字,需浏览 3分钟
·
2022-04-26 07:28
Given the root of an n-ary tree, return the postorder traversal of its nodes' values.
Nary-Tree input serialization is represented in their level order traversal. Each group of children is separated by the null value (See examples)
示例
评论