Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would you implement a binary tree in the code below? I need it to print out the below in numerical order by id.

import java.util.Scanner;

class clubmember {

    public static void main(String[] args) {

        int id;
        String fname, lname;
        Scanner input = new Scanner(System.in);

        System.out.println("ID>");
        id = input.nextInt();

        System.out.println("Fname >");
        fname = input.next();

        System.out.println("lname >");
        lname = input.next();


        Person object1 = new Person(id, fname, lname);

        System.out.println(object1);


    }
}




public class Person {
    private final int id;
    private final String firstName;
    private final String lastName;


    public Person(int id, String firstName, String lastName) {
        this.id = id;
        this.firstName = firstName;
        this.lastName = lastName;
    }

    public int getId() {
        return id;
    }

    public String getFirstName() {
        return firstName;
    }

    public String getLastName() {
        return lastName;
    }

    @Override
    public String toString() {
        return String.valueOf(id) + ": " + firstName + " " + lastName;
    }
}

I was actually asked to use this tree as an example...Can anyone help??

public class BinaryTreeTest {

  public static void main(String[] args) {
    new BinaryTreeTest().run();
  }

  // Node Class
  static class Node {
    Node left;

    Node right;

    int value;

    public Node(int value) {
      this.value = value;
    }
  }

  public void run() {
    // build simple tree 

    Node root = new Node(5);
    System.out.println("Binary Tree Example");
    System.out.println("Building tree with root value of ID " + root.value);
    insert(root, 1);
    insert(root, 8);
    insert(root, 6);
    insert(root, 3);
    insert(root, 9);
    System.out.println("Traversing tree in order");
    printInOrder(root);
    System.out.println("Traversing tree front-to-back from location 7");
    printFrontToBack(root, 7);
  }

  public void insert(Node node, int value) {
    if (value < node.value) {
      if (node.left != null) {
        insert(node.left, value);
      } else {
        System.out.println("  Inserted " + value + " to left of "
            + node.value);
        node.left = new Node(value);
      }
    } else if (value > node.value) {
      if (node.right != null) {
        insert(node.right, value);
      } else {
        System.out.println("  Inserted " + value + " to right of "
            + node.value);
        node.right = new Node(value);
      }
    }
  }

  public void printInOrder(Node node) {
    if (node != null) {
      printInOrder(node.left);
      System.out.println("  Traversed " + node.value);
      printInOrder(node.right);
    }
  }

  /**
   * uses in-order traversal when the origin is less than the node's value
   * 
   * uses reverse-order traversal when the origin is greater than the node's
   * order
   */
  public void printFrontToBack(Node node, int idNumber) {
    if (node == null)
      return;
    if (node.value > idNumber) {
      // print in order
      printFrontToBack(node.left, idNumber);
      System.out.println("  Traversed " + node.value);
      printFrontToBack(node.right, idNumber);
    } else if (node.value < idNumber) {
      // print reverse order
      printFrontToBack(node.right, idNumber);
      System.out.println("  Traversed " + node.value);
      printFrontToBack(node.left, idNumber);
    } else {
      // order doesn't matter
      printFrontToBack(node.left, idNumber);
      printFrontToBack(node.right, idNumber);
    }
  }

}
share|improve this question
Do you actually want a tree? Or do you just want to be able to sort these objects in a container? – Oli Charlesworth Jun 20 '11 at 14:51
I wanted them in a binary tree. – allencoded Jun 20 '11 at 15:18

2 Answers

up vote 1 down vote accepted

If you want to keep your objects ordered by an id, you can use a TreeMap.

public static void main(String[] args) {
    Map<Integer, Person> persons = new TreeMap<Integer, Person>();
    persons.put(433, new Person(433, "John", "Smith");
    persons.put(211, new Person(211, "Peter", "Johnson");
    persons.put(556, new Person(556, "Laura", "Walters");

    // This loop will print out ordering by id
    for (Integer key: persons.keySet())
        System.out.println(persons.get(key));
}
share|improve this answer

You can also make Person implement Comparable then add a compareTo(Person p) method. Then you could add all your generated Person objects to an ArrayList and use Collections.sort() to sort it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.