摘要:
__ 阅读全文
摘要:
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ cl... 阅读全文
摘要:
class Solution { public: int maxDepth(TreeNode* root) { if (!root) return 0; return 1 + max(maxDepth(root->left), maxDepth(root->right)); } }; /** * Definition for a bi... 阅读全文
摘要:
上面是把stack转移到一个queue中 下面是利用两个stack互转做 阅读全文
摘要:
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ cla... 阅读全文
摘要:
_ 阅读全文
摘要:
说是年终总结,其实是上个学期的总结 09-10月,基本上是在自学深度学习和计算机网络中度过,最后纠结了好久退了实验室,一方面是因为每次去东区开组会都要坐3小时的地铁受不了,另一方面学业压力太重了,我既要学计算机的专业课还要上本专业的专业课(信工的专业课真的难),而且我是那种不可能不玩的人,让我每天学 阅读全文