seungriyou / algorithm-study

알고리즘 & SQL 문제 풀이 기록
https://leetcode.com/u/summer_y
0 stars 0 forks source link

[LC] 230. Kth Smallest Element in a BST #61

Open seungriyou opened 6 months ago

seungriyou commented 6 months ago

https://leetcode.com/problems/kth-smallest-element-in-a-bst/

Approach

BST는 inorder traversal 하면 sorted 결과를 얻을 수 있다.

tree의 traversal은 recursion을 이용하면 쉽게 구현할 수 있다.

또한, 일반 함수가 아닌 generator 함수로도 구현할 수 있다.


Complexity