Search:

Type: Posts; User: stun31

Search: Search took 0.11 seconds.

  1. Re: construct a BST tree using the Node class given - revision

    Thanks

    My question is that I dont know how to construct a binary search tree using this class given and would like some points on how to start one using this class, I can construct a BST tree on...
  2. Re: construct a BST tree using the Node class given - revision

    Hey there Thanks for having a look - I am trying to construct a BST tree using this Node class given

    --- Update ---

    The program Im writing reads a txt into an arraylist, I have done that - from...
  3. construct a BST tree using the Node class given - revision

    class Node{
    private int value;
    private Node[] children;
    boolean hasLeft = false;
    boolean hasRight = false;

    public Node(int a){
    children = new Node[2];
    ...
Results 1 to 3 of 3