2015年9月21日

9.21-9.27

摘要: 1.Flatten Binary Tree to Linked List 1 //dfs、前序遍历一下即可 2 class Solution { 3 public: 4 void dfs(TreeNode* root, TreeNode* &pre) 5 { 6 if... 阅读全文

posted @ 2015-09-21 08:32 JustForCS 阅读(216) 评论(0) 推荐(0)

导航