https://leetcode.com/problems/binary-search-tree-iterator/ Binary Search Tree Iterator Total Accepted: 29015 Total Submissions: 95018 Difficulty: Medium Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return the next smallest number in the BST. Note: next() and hasNext() should run in average O(1) time …
Continue reading “Leetcode 173: Binary Search Tree Iterator”