어제 못 다한 Map 정리를 끝내고 자바 완강! 컬렉션 프레임워크 Stack, Queue, ArrayDeque ▶️ Stack - 마지막에 저장한 데이터를 가장 먼저 꺼내는 자료구조 (LIFO) 이런 식으로 처음에 들어간 데이터들 위로 나중에 들어간 데이터들이 쌓이면서 나중 데이터들 먼저 빠져나오는 것이 스택이다❗ ▶️ 예제 import java.util.Stack; public class Main { public static void main(String[] args) { Stack stack = new Stack(); stack.push(1); stack.push(3); stack.push(9); stack.push(5); stack.push(7); System.out.println(stack); S..