Leetcode 0173. Binary Search Tree Iterator
Posted on Fri 21 February 2025 in Leetcode • Tagged with bst, iterator
Question Link : https://leetcode.com/problems/binary-search-tree-iterator/
Difficulty: Medium
Premium: False
Question
Implement the BSTIterator class that represents an iterator over the in-order traversal of a binary search tree (BST):
BSTIterator(TreeNode root) Initializes an object of the BSTIterator class. The root of the BST is given as part of …
Continue reading