LeetCode之出现次数最多的子树元素和

题目链接:https://leetcode-cn.com/problems/most-frequent-subtree-sum/

在这里插入图片描述
解题步骤:

  • 首先,我们需要求每个节点的子树元素和,每个节点的左右子节点的子树元素和就是该节点的子问题,因此,使用递归进行求解
  • 求出子树元素和后,还需要计算其出现的次数,使用hashmap存储子树元素和 和 次数的映射关系
  • 并通过一个变量记录出现最多的次数max
  • 最后遍历hashmap,找出出现次数为max的子树元素和

C++实现:

/**
 * 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 {

    unordered_map<int, int> map;  // 记录子树元素和、出现次数的映射
    int maxSum;  // 记录最多出现次数

public:
    int countSubTreeSum(TreeNode* root) {
        if (root == nullptr)
            return 0;
        int sum =  root->val + countSubTreeSum(root->left) + countSubTreeSum(root->right);
        if (map.find(sum) != map.end())
            map[sum]++;
        else
            map[sum] = 1;
        maxSum = max(maxSum, map[sum]);
        return sum; 
    }

    vector<int> findFrequentTreeSum(TreeNode* root) {
        countSubTreeSum(root);
        vector<int> res;
        for (auto& m : map) {
            if (m.second == maxSum)
                res.push_back(m.first);
        }
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值