240
笔下虽有千言,胸中实无一策
摘要: 题解 递归和迭代两种解法。 递归解法很直接。 class Solution { public: TreeNode* insertIntoBST(TreeNode* root, int val) { if(!root) return new TreeNode(val); if(val < root-> 阅读全文
posted @ 2020-08-20 07:42 CasperWin 阅读(138) 评论(0) 推荐(0) 编辑