mun dev

[백준] - 10828 스택 자바 본문

알고리즘/백준

[백준] - 10828 스택 자바

mndev 2023. 1. 29. 19:57

분류

 

자료 구조(data_structures), 스택(stack)

 

 

문제설명

 

정수를 저장하는 스택을 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.

명령은 총 다섯 가지이다.

  • push X: 정수 X를 스택에 넣는 연산이다.
  • pop: 스택에서 가장 위에 있는 정수를 빼고, 그 수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다.
  • size: 스택에 들어있는 정수의 개수를 출력한다.
  • empty: 스택이 비어있으면 1, 아니면 0을 출력한다.
  • top: 스택의 가장 위에 있는 정수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다

 

 

통과한 코드 

 

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
import java.util.Stack;

public class Main {

   public static void main(String[] args) throws IOException {
      // TODO Auto-generated method stub
      BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(System.in));
	   Stack<Integer> stack = new Stack<Integer>();
	  
      int cnt = Integer.parseInt(bufferedReader.readLine());
      StringTokenizer stingTokenizer;

      for(int i=0; i<cnt; i++) {
    	  stingTokenizer=new StringTokenizer(bufferedReader.readLine());
    	 String s=stingTokenizer.nextToken();
    	  if(s.contains("push")) { // 정수 넣기 
    		int num = Integer.parseInt(stingTokenizer.nextToken());
    		stack.push(num);
    	  }else if(s.equals("pop")){ // 제일 최근에 넣은 정수 꺼내기 
    		 System.out.println(stack.isEmpty()?-1:stack.pop());
    	  }else if(s.equals("size")) { // 크기 출력하기 
    		  System.out.println(stack.size());
    	  }else if(s.equals("empty")) { // 비어있는지 확인 
    		 System.out.println(stack.isEmpty()?1:0);
    	  }else if(s.equals("top")) { //가장 최근에 넣은 정수 출력, 꺼내기 아님
    		System.out.println(stack.isEmpty()?-1:stack.peek());
    	  }
      }
   }
}

'알고리즘 > 백준' 카테고리의 다른 글

[백준] - 2675 문자열 반복 자바  (0) 2023.03.15
[백준] - 11653 소인수분해 자바  (0) 2023.02.26
[백준] - 2501 자바  (0) 2023.02.25
[백준] - 18258 큐2  (0) 2023.02.01
[백준] - 10845 큐 자바  (0) 2023.01.29