Stack 썸네일형 리스트형 Stack 과 Queue Stack 과 Queue 예제 import java.util.LinkedList; import java.util.Queue; public class StackTest { public static void main(String[] args) { Stack s = new Stack(); s.push("a"); s.push("b"); s.push("c"); s.push("d"); // 현재 상태 ; d ; 꼭대기 데이터 접근 조회 if(!s.empty()){ System.out.println("가장 위 ="+s.peek()); s.pop(); // 현재 꼭대기 데이터 삭제 ; d System.out.println("가장 위 ="+s.peek()); s.pop(); // 현재 꼭대기 데이터 삭제 ; c Syst.. 더보기 이전 1 다음