摘要: Problem Description:http://oj.leetcode.com/problems/path-sum/Pretty easy. 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode(int x) : val(x), left(NULL), right(NULL) {} 8 * }; 9 */10 class Solution {11... 阅读全文
posted @ 2013-10-14 07:51 假日笛声 阅读(195) 评论(0) 推荐(0) 编辑