Binary Tree Preorder Traversal

本文介绍二叉树的前序遍历算法,包括递归和迭代两种实现方式,并提供详细的C++代码示例。分析了算法的时间复杂度。
摘要由CSDN通过智能技术生成

题目

Given a binary tree, return the preorder traversal of its nodes' values.

For example:
Given binary tree {1,#,2,3},

   1
    \
     2
    /
   3

return [1,2,3].

Note: Recursive solution is trivial, could you do it iteratively?


分析

递归:CODE 1

迭代:CODE 2 、 CODE 3

复杂度

O(n)

输入


CODE

CODE 1:递归

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> preorderTraversal(TreeNode *root) {
        if (root == NULL) {
            return result;
        }
        result.push_back(root->val);
        if (root->left) {
            preorderTraversal(root->left);
        }
        if (root->right) {
            preorderTraversal(root->right);
        }
        return result;
    }

private :
    vector<int> result;
};

CDOE 2:仅非空右节点入栈

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> preorderTraversal(TreeNode *root) {
        mystack.push(NULL);  // 设定结束条件,要不是空树,不遍历空节点
        while(!(root == NULL && mystack.empty())) {
            if (root == NULL) {
                // 空树
                break;
            } else {
                result.push_back(root->val);
                if (root->right) {
                    mystack.push(root->right);
                }
                // next node
                if (root->left) {
                    root = root->left;
                } else {
                    root = mystack.top();
                    mystack.pop();
                }
            }
        }
        return result;
    }

private :
    vector<int> result;
    stack<TreeNode *> mystack;
};



CODE 3:所有需要遍历的点都入栈

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> preorderTraversal(TreeNode *root) {
        if (root == NULL) {
            return result;
        }
        mystack.push(root);
        while (!mystack.empty()) {
            root = mystack.top();
            mystack.pop();
            result.push_back(root->val);
            if (root->right) {
                mystack.push(root->right);
            }
            if (root->left) {
                mystack.push(root->left);
            }
        }
        return result;
    }

private :
    vector<int> result;
    stack<TreeNode *> mystack;
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值