표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
import java.util.*; public class prog { public static void main(String[] args) { Stack<Integer> st = new Stack<Integer>(); // 스택의 생성 //Deque<Integer> st = new ArrayDeque<Integer>(); // push() 메소드를 이용한 요소의 저장 st.push(4); st.push(2); st.push(3); st.push(1); // peek() 메소드를 이용한 요소의 반환 System.out.println(st.peek()); System.out.println(st); // pop() 메소드를 이용한 요소의 반환 및 제거 System.out.println(st.pop()); System.out.println(st); // search() 메소드를 이용한 요소의 위치 검색 System.out.println(st.search(4)); System.out.println(st.search(3)); } }