题解 | #二叉树中的最大路径和#

二叉树中的最大路径和

https://www.nowcoder.com/practice/da785ea0f64b442488c125b441a4ba4a?tpId=117&tqId=37716&rp=1&ru=/exam/oj&qru=/exam/oj&sourceUrl=%2Fexam%2Foj%3Fpage%3D1%26pageSize%3D50%26search%3D%26tab%3D%25E7%25AE%2597%25E6%25B3%2595%25E7%25AF%2587%26topicId%3D117&difficulty=undefined&judgeStatus=undefined&tags=&title=

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param root TreeNode类 
     * @return int整型
     */
    int maxPathSum(TreeNode* root) {
      if (root == nullptr) {
        return 0;
      }
      
      int res = -0xff;
      std::queue<TreeNode *> q;
      std::vector<TreeNode *> list;
      
      q.push(root);
      
      while (!q.empty()) {
        int size = q.size();
        
        for (int i = 0; i < size; ++i) {
          TreeNode *tmp = q.front();
          q.pop();
          
          list.push_back(tmp);
          
          if (tmp->left) {
            q.push(tmp->left);
          }
          if (tmp->right) {
            q.push(tmp->right);
          }
        }
      }
      
      //  从叶子结点向上递推
      for (int i = list.size() - 1; i >= 0; --i) {
        TreeNode *tmp = list[i];
        
        //  叶子结点
        if (tmp->left == nullptr && tmp->right == nullptr) {
          res = std::max(res, tmp->val);
        } else {
          int left = 0, right = 0;
          if (tmp->left) {
            left = tmp->left->val;
          }
          if (tmp->right) {
            right = tmp->right->val;
          }
          int old_tmp = tmp->val;
          //  当前结点只能取根,根左,根右三者中最大值,如果取左根右,那么从父结点访问下来会有结点被重复访问
          tmp->val = std::max(std::max(left, right) + tmp->val, tmp->val);
          //  最终结果可以单取一棵树
          //  根结点,根左,根右,左根右四者中取最大值
          res = std::max(res, std::max(old_tmp + left + right, tmp->val));
        }
      }
      
      return res;
    }
};
全部评论

相关推荐

2024-11-15 23:37
门头沟学院 Java
不敢追175女神:和hr偷偷谈对象能不能提高base😋
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务