2016年7月20日
摘要: class Solution { public: int depth(TreeNode* root) { if(!root) return 0; int nleft=depth(root->left); int nright=depth(root->right); retu... 阅读全文
posted @ 2016-07-20 10:54 summerkiki 阅读(120) 评论(0) 推荐(0) 编辑