leetcode
jiangzhenkang
这个作者很懒,什么都没留下…
展开
-
leetcode-230_KthSmallestElementinaBST
上代码 #!/usr/bin/env python # encoding: utf-8 """ 找出一颗二叉搜索树第K大的值 思路可以用中序遍历,第K个输出的结果就是第K小的值 Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note: You ...原创 2019-05-14 18:17:59 · 228 阅读 · 0 评论 -
leetcode-445_AddTwoNumbersII
leetcode-445_AddTwoNumbersII 标签(空格分隔): 数据结构, leetcode 上代码 #!/usr/bin/env python # encoding: utf-8 """ 链表加法 需要用栈记录下两个链表,然后把结果放进list,最后再生成链表 @author: zkjiang @time: 2019/5/16 14:38 You are given ...原创 2019-05-16 14:42:22 · 234 阅读 · 1 评论