鱼C论坛

 找回密码
 立即注册
查看: 1909|回复: 0

[学习笔记] leetcode 102. Binary Tree Level Order Traversal

[复制链接]
发表于 2019-10-2 10:16:51 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Seawolf 于 2019-10-3 05:43 编辑
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]
]
/**
 * 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) {
        // return BFS(root);  
        vector<vector<int>> ans;
        DFS(root,0, ans);
        return ans;
    }

private:
    vector<vector<int>> BFS(TreeNode* root){
        vector<vector<int>> ans;
        if(root == NULL) return ans;
        vector<TreeNode*> cur, next;
        cur.push_back(root);
        
        while(!cur.empty()){
            ans.push_back({});
            for(TreeNode* node : cur){
                ans.back().push_back(node->val);
                
                if(node->left != NULL) next.push_back(node->left);
                if(node->right != NULL) next.push_back(node->right);
            }
            
            cur.swap(next);
            next.clear();
        }
        
        return ans;
    }
    
    void DFS(TreeNode* root , int depth, vector<vector<int>>& ans){
        if(root == NULL) return;
        while(ans.size() <= depth) ans.push_back({});
        DFS(root->left,depth+1, ans);
        DFS(root->right,depth+1,ans);
        ans[depth].push_back(root->val);
    }
};

optimized DFS
/**
 * 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) {
        // return BFS(root);  
        vector<vector<int>> ans;
        if(!root) return ans;
        DFS(root,0, ans);
        return ans;
    }

private:
    void DFS(TreeNode* root , int depth, vector<vector<int>>& ans){
        if(root != NULL) {
            if(ans.size() > depth){
                ans[depth].push_back(root->val);
            }else{
                ans.push_back(vector <int>{root->val});
            }
            DFS(root->left, depth+1, ans);
            DFS(root->right,depth+1, ans);
        }
    }
};

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 13:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表