二叉树的最大宽度

二叉树的最大宽度

代码

// the max depth for the binary tree
// use the recursion to deal it 
// use the circulation to deal it 
// sometime the recurtion idea is not a good idea

#ifndef _BIN_TREE_MAX_DEEP_LENGTH
#define _BIN_TREE_MAX_DEEP_LENGTH

#include <stdio.h>
#include <queue>

int max(int a, int b) {
    return (a > b? a: b);
}

struct TreeNode {
    int value;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            value(x), left(NULL), right(NULL) {
    }
};

class Solution {
public:
    Solution() {};
    virtual ~Solution() {};

public:
    int TreeWidth(TreeNode * root) {
        if (NULL == root) {
            return 0;
        }
    
        std::queue<TreeNode *> level_node_queue;
        level_node_queue.push(root);
        int max_width_total = 0; 
        int max_width_level = 0;

        while(!level_node_queue.empty()) {
            max_width_level = level_node_queue.size();                 // 当前层的宽度
            max_width_total = max(max_width_total, max_width_level);
            
            for (int i = 0; i < max_width_level; ++i) {                // 把当前层的节点导出,并且导入下一层node
                auto node = level_node_queue.pop();
                if (!node->left) level_node_queue.push(node->left);
                if (!node->right) level_node_queue.push(node->right); 
            }
        }
               
        return max_width_total;
    }
};

#endif
	
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值