[공부 내용 정리] LIFO : Last in First Out 나중에 넣은 객체가 먼저 빠져나가는 자료구조. Stack (후입선출, LIFO) 스택은 마지막에 넣은 객체가 가장 먼저 빠지는 자료구조임. Stack stack = new Stack(); package chapter11; import java.util.Stack; public class StackExample { public static void main(String[] args) { Stack stack = new Stack(); stack.push("coin1"); stack.push("coin2"); stack.push("coin3"); stack.push("coin4"); System.out.println(stack.peek()); ..