leetcode解题集
文章平均质量分 55
xiaozuo2017
这个作者很懒,什么都没留下…
展开
-
二叉树三种遍历方法的递归与非递归实现
二叉树的三种递归方法:前序、中序和后序。 前序遍历:先根节点,再左孩子,最后右孩子。 递归实现: //前序递归 void PreorderRecusively(BinaryTree *root){ if(root == NULL) return; coutval<<endl; PreorderRecusively(root->lchild); PreorderRecusively原创 2017-10-31 15:20:20 · 293 阅读 · 0 评论 -
Pascal's Triangle II c++
原题目: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space?原创 2017-10-24 10:35:28 · 273 阅读 · 0 评论