자바 Stack 클래스

알파·2022년 10월 22일
0
post-custom-banner

Stack

Stack이란 Last In First Out의 형태를 띄는 자료구조이다.

Stack 선언 및 값 추가

Stack<Integer> stack = new Stack<>();
Stack<String> stack = new Stack<>();

stack.push(1);

Stack 값 삭제

stack.pop(); // stack에 값 제거
stack.cleart(); // stack의 전체 값 제거

Stack 기타 메서드

stack.empty(); //stack이 비어있는지 체크
stack.peek(); // 가장 상단의 값 출력
stack.size(); // 크기

출처 : 여기

profile
I am what I repeatedly do

0개의 댓글