LeetCode(112):路徑總和

提交代碼:web bool hasPathSum(struct TreeNode* root, int sum) { if(root==NULL)//若是搜到空節點還沒出現符合值相等的就return false了。 { return false; } else if(root->left==NULL&&root->right==NULL) {
相關文章
相關標籤/搜索