leetcode 589. N叉树的前序遍历(N-ary Tree Preorder Traversal)

Posted zhanzq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 589. N叉树的前序遍历(N-ary Tree Preorder Traversal)相关的知识,希望对你有一定的参考价值。

题目描述:

给定一个 N 叉树,返回其节点值的前序遍历

例如,给定一个 3叉树 :

技术图片

返回其前序遍历:[1,3,5,6,2,4]

说明: 递归法很简单,你可以使用迭代法完成此题吗?


解法:

/*
// Definition for a Node.
class Node {
public:
    int val;
    vector<Node*> children;

    Node() {}

    Node(int _val, vector<Node*> _children) {
        val = _val;
        children = _children;
    }
};
*/
class Solution {
public:
    vector<int> preorder(Node* root) {
        vector<int> res;
        if(!root){
            return res;
        }else{
            res.push_back(root->val);
            for(Node* node : root->children){
                vector<int> lst = preorder(node);
                res.insert(res.end(), lst.begin(), lst.end());
            }
            return res;
        }
    }
};

以上是关于leetcode 589. N叉树的前序遍历(N-ary Tree Preorder Traversal)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 589. N叉树的前序遍历(N-ary Tree Preorder Traversal)

LeetCode-589. N叉树的前序遍历

LeetCode 589. N 叉树的前序遍历(迭代写法) / 2049. 统计最高分的节点数目 / 590. N 叉树的后序遍历

leetcode 589. N叉树的前序遍历(N-ary Tree Preorder Traversal)

589. N叉树的前序遍历

589. N叉树的前序遍历