Search:

Type: Posts; User: javapenguin

Search: Search took 0.11 seconds.

  1. [SOLVED] Re: 2D Collections. How to make them and is it a good idea to do so?

    I suppose you could. Never thought of that. I've actually made a LinkedList that holds a class that holds a LinkedList of another class that holds a LinkedList of yet another class.

    Would one...
  2. [SOLVED] 2D Collections. How to make them and is it a good idea to do so?

    public interface My2DCollection<T>
    {

    public T get(int row, int column);
    public int Size();
    public T front();
    public T back();
    public void add(T data, int row, int column);
    public void...
Results 1 to 2 of 2