230. Kth Smallest Element in a BST - Medium
前往題目
之前寫的文章
想法
- 用
priority queue
,取最小的前k
個
思路
仔細觀察會發現這題的數字用inorder
的方式traverse
剛好會排成ascending
的樣子
簡單來說就是,往左邊走就對了,沒有的話就pop
,最後才走右邊
- 借助
stack
的力量 - 只要有左邊的
node
就push
到stack
,然後前往left node
- 如果沒有左邊了就
pop
,然後前往right node
- 沒有
right node
繼續pop
Code
230. Kth Smallest Element in a BST - Medium
https://f88083.github.io/2024/04/12/230-Kth-Smallest-Element-in-a-BST-Medium/