题目描述
blablabla
样例
blablabla
算法1
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
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 {
int wpl;
public:
void dfs(TreeNode* root,int depth){
if(!root->left&&!root->right){
wpl+=depth*root->val;
return;
}
if(root->left) dfs(root->left,depth+1);
if(root->right) dfs(root->right,depth+1);
}
int pathSum(TreeNode* root) {
int depth=0;
dfs(root,depth);
return wpl;
}
};
算法2
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla