Search:

Type: Posts; User: jwillett29

Search: Search took 0.08 seconds.

  1. Thread: Stack List

    by jwillett29
    Replies
    3
    Views
    890

    Re: Stack List

    I am kind of confused really. What I'm trying to do is reverse the results of pop meaning my stack should be in order. I haven't made a progress yet.
  2. Thread: Stack List

    by jwillett29
    Replies
    3
    Views
    890

    Stack List

    public class GenericStackApp
    {
    public static void main(String args[])
    {
    GenericStack<String> q1 = new GenericStack<>();
    q1.push("Apples");
    q1.push("Oranges");
    ...
Results 1 to 2 of 2