热门

最新

红包

立Flag

投票

同城

我的

发布
2401_87022448
2401_87022448
2 年前
true2401_87022448

求助 安装qq时出现这个错误 A JavaScript error occurred in main process

CSDN App 扫码分享
分享
1
1
打赏
  • 复制链接
  • 举报
下一条:
leetcode 112.路径总和bool hasPathSum(struct TreeNode* root, int targetSum) { if(root==NULL) { return false; } if(root->left==NULL&&root->right==NULL) { return targetSum==root->val; } if(root->left) { if(hasPathSum(root->left, targetSum-root->val))return true; } if(root->right) { if(hasPathSum(root->right, targetSum-root->val))return true; } return false;}
立即登录