美文网首页
230. Kth Smallest Element in a B

230. Kth Smallest Element in a B

作者: 我是你的果果呀 | 来源:发表于2016-12-12 11:06 被阅读0次

    Given a binary search tree, write a functionkthSmallestto find thekth smallest element in it.

    Note:

    You may assume k is always valid, 1 ≤ k ≤ BST's total elements.

    Follow up:

    What if the BST is modified (insert/delete operations) often and you need to find the kth smallest frequently? How would you optimize the kthSmallest routine?

    第一种方法 中序遍历到k 返回。 第二种递归。 这个新颖。但是两次递归, 有点坑爹/

    相关文章

      网友评论

          本文标题:230. Kth Smallest Element in a B

          本文链接:https://www.haomeiwen.com/subject/godmmttx.html