[Leetcode] Binary Search Tree

Source: Internet
Author: User

Title: (Tree Stack)

Implement an iterator over a binary search tree (BST). Your iterator is initialized with the root node of a BST.

Calling would return the next smallest number in the next() BST.

Note: next() hasNext() and should run in average O (1) time and uses O (h) memory, where H is the height of the Tree.

Exercises

Tree's problem is easily linked to stack, the problem is to maintain a stack on it.

With Pushleft ()

/** Definition for binary tree * public class TreeNode {* Int. val; * TreeNode left; * TreeNode right; * TreeNode (int x) {val = x;} }*/ Public classBstiterator {//TreeNode Root;stack<treenode> stack =NewStack<treenode>();  Publicbstiterator (TreeNode root) {pushleft (root); }    /** @return Whether we have a next smallest number*/     PublicBoolean hasnext () {return!Stack.isempty (); }    /** @return The next smallest number*/     Public intNext () {TreeNode small=Stack.pop ();        Pushleft (Small.right); returnSmall.val; }         Public voidpushleft (TreeNode root) { while(root!=NULL) {Stack.push (root); Root=Root.left; }    }}/** * Your bstiterator'll be called like this: * bstiterator i = new Bstiterator (root), * while (I.hasnext ()) v[f ()] = I.next (); */

Constantly push the root.left to the stack, and if that node had right child at the time of the backtracking, then more of that right child would be pushleft ().

[Leetcode] Binary Search Tree

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.