Golang Leetcode 230. Kth Smallest Element in a BST.go

2019-04-12 11:35:48 浏览数 (1)

版权声明:原创勿转 https://cloud.tencent.com/developer/article/1412921

思路

先计算左子树中节点的个数

如果左子树节点个数大于k-1,那么答案在左子树中

如果个数小于k-1,就在右子树中

如果刚好相等,就直接返回root节点的值

code

代码语言:javascript复制
func kthSmallest(root *TreeNode, k int) int {
	left := countLeaf(root.Left)
	if left == k-1 {
		return root.Val
	} else if left > k-1 {
		return kthSmallest(root.Left, k)
	} else {
		return kthSmallest(root.Right, k-left-1)
	}
}

func countLeaf(root *TreeNode) int {
	if root == nil {
		return 0
	}
	return countLeaf(root.Left)   countLeaf(root.Right)   1
}

0 人点赞