摘要: Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. 找二叉搜索树中第k个小的值。 用中序遍历,增加一个全局变量记录访问到第几个节点,返回访问的第k个节点的值。 阅读全文
posted @ 2017-12-19 21:25 Zzz...y 阅读(169) 评论(0) 推荐(0) 编辑