Leetcode#112. 路徑總和,C++實現

目錄 1. 題目 2. 方法一 2.1. 代碼 2.2. 結果 1. 題目 2. 方法一 2.1. 代碼 class Solution { public: bool hasPathSum(TreeNode* root, int sum) { if(root==NULL) return false; if(root->left==NULL&&root->rig
相關文章
相關標籤/搜索