LeetCode 102. Binary Tree Level Order Traversal

题目

Given a binary tree, return the level order traversal of its nodes’ values. (ie, from left to right, level by level).

For example:
Given binary tree [3,9,20,null,null,15,7],
    3
   / \
  9  20
    /  \
   15   7
return its level order traversal as:
[
  [3],
  [9,20],
  [15,7]
]

思考

即树的遍历,加上对层数的标记。

答案

c++
广度优先搜索:把树用vector保存下来,包括NULL,然后根据二叉树的序号规律划分层次存入结果中。

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<vector<int>> levelOrder(TreeNode* root) {
        vector<TreeNode*> temp;
        temp.push_back(root);
        for (int i = 0; i < temp.size(); i++) {
            if (temp[i] != NULL) {
                temp.push_back(temp[i]->left);
                temp.push_back(temp[i]->right); 
            }
        }
        int currentIndex = 0, level = 0;
        vector<vector<int>>* result = new vector<vector<int>>;
        while (currentIndex < temp.size()) {
            // each level
            vector<int>* a = new vector<int>;
            for (int i = 0; i < pow(2, level); i++, currentIndex++) {
                if (temp[currentIndex] != NULL) {
                    a->push_back(temp[currentIndex]->val);
                }
            }
            if (a->size() != 0) result->push_back(*a);
            vector<int>().swap(*a);
            level++;
        }
        return *result;
    }
};

深度优先搜索

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<vector<int>> ret;

    void buildVector(TreeNode *root, int depth)
    {
        if(root == NULL) return;
        if(ret.size() == depth)
            ret.push_back(vector<int>());

        ret[depth].push_back(root->val);
        buildVector(root->left, depth + 1);
        buildVector(root->right, depth + 1);
    }

    vector<vector<int> > levelOrder(TreeNode *root) {
        buildVector(root, 0);
        return ret;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值