Search:

Type: Posts; User: jocdrew21

Search: Search took 0.11 seconds.

  1. Thread: linked lists

    by jocdrew21
    Replies
    4
    Views
    861

    Re: linked lists

    Will do Greg and thanks norm I got it figured out. :cool:

    I am about to start programming depth and breath first search for fun but I was wondering is there a library in Java for those data...
  2. Thread: linked lists

    by jocdrew21
    Replies
    4
    Views
    861

    linked lists

    import java.io.*;

    public class LinkedList
    {
    private class node
    {
    int number;
    node next;
    }
Results 1 to 2 of 2