7172737475767778798081
public void testStack()throws Exception { System.out.println("****************** TEST STACK ******************"); Stack s = new StackImpl(); s.push("one"); s.push("two"); s.pop(); s.push("two"); s.push("three");
7273747576777879808182
public void testStack()throws Exception { System.out.println("****************** TEST STACK ******************"); Stack s = new StackImpl(); s.push("one"); s.push("two"); s.pop(); s.push("two"); s.push("three"); s.pop();
6566676869707172737475
6667686970717273747576
6970717273747576777879
Stack s = new StackImpl(); s.push("one"); s.push("two"); s.pop(); s.push("two"); s.push("three"); s.pop(); s.pop(); s.pop(); try
7071727374757677787980
s.push("one"); s.push("two"); s.pop(); s.push("two"); s.push("three"); s.pop(); s.pop(); s.pop(); try {