题解 | #二叉树的最大宽度#
二叉树的最大宽度
https://www.nowcoder.com/practice/0975d62a307549cea32f353f354a7377
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
#include <algorithm>
#include <cstddef>
#include <map>
#include <queue>
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型
*/
int res = 0;
map<int,int> m;
int widthOfBinaryTree(TreeNode* root) {
// write code here
if(root==nullptr) return res;
dfs(root,0,0);
return res;
}
void dfs(TreeNode* root,int depth,int index){
if(root==nullptr) return;
if(m.find(depth)==m.end()) m.insert(pair<int,int>(depth,index));
res=max(res,index-m.at(depth)+1);
dfs(root->left, depth+1, index*2);
dfs(root->right,depth+1,index*2+1);
}
};