摘要: https://leetcode.com/problems/unique-binary-search-trees/ 1 class Solution { 2 public: 3 int numTrees(int n) { 4 //典型的动态规划问题 5 //先... 阅读全文
posted @ 2015-07-10 20:56 阿怪123 阅读(126) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/binary-tree-inorder-traversal/递归中序遍历 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int v... 阅读全文
posted @ 2015-07-10 16:41 阿怪123 阅读(128) 评论(0) 推荐(0)