Search:

Type: Posts; User: dr_programmer

Search: Search took 0.09 seconds.

  1. Re: need ideas for implemeting special Binary search tree

    it's first option about swap root with an node..
    but how to do it? i have no clue..

    and here is my node class:




    public class BinaryTreeNode<T>
    {
  2. Re: need ideas for implemeting special Binary search tree

    here the code:


    public class LinkedBinarySearchTree<T> extends LinkedBinaryTree<T> implements
    BinarySearchTreeADT<T> {

    BinaryTreeNode<T> newParent = null;

    public...
  3. need ideas for implemeting special Binary search tree

    hey guys..

    i need ideas or algorithms for implementing a special version of binary search tree..

    the tree is an normal binary seatch tree, where left is smaller than right node.
    but each node...
Results 1 to 3 of 3