stack 클래스 객체를 만들어 내부 메서드를 사용하는 간단한 예제이다.
Java SE 17 & JDK 17 버전 Doc 참고한 스택 관련 메서드.
삭제 없이
읽어오는 메서드.삭제 후
읽어오는 메서드.import java.io.*;
import java.util.*;
public class Main{
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
StringBuilder sb = new StringBuilder();
Stack<Integer> stack = new Stack<>();
for(int i=0; i < N; i++){
String str = br.readLine();
if(str.contains("push")){
String tmp = str.substring(5);
int X = Integer.parseInt(tmp);
stack.push(X);
}else if(str.equals("pop")){
if(!stack.empty()){
Integer num = stack.pop();
sb.append(num).append("\n");
}else{
sb.append("-1").append("\n");
}
}else if(str.equals("size")){
sb.append(stack.size()).append("\n");
}else if(str.equals("empty")){
int tmp = 0;
tmp = stack.empty() ? 1 : 0;
sb.append(tmp).append("\n");
}else{ // top
if(!stack.empty()){
Integer num = stack.peek();
sb.append(num).append("\n");
}else{
sb.append("-1").append("\n");
}
}
}
System.out.println(sb);
br.close();
}
}
import java.io.*;
import java.util.*;
public class Main {
public static int[] stack;
public static int size = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st;
int N = Integer.parseInt(br.readLine());
stack = new int[N];
while (N-- > 0) {
st = new StringTokenizer(br.readLine(), " ");
switch (st.nextToken()) {
case "push":
push(Integer.parseInt(st.nextToken()));
break;
case "pop":
sb.append(pop()).append('\n');
break;
case "size":
sb.append(size()).append('\n');
break;
case "empty":
sb.append(empty()).append('\n');
break;
case "top":
sb.append(top()).append('\n');
break;
}
}
System.out.println(sb);
}
public static void push(int item) {
stack[size] = item;
size++;
}
public static int pop() {
if(size == 0) {
return -1;
}
else {
int res = stack[size - 1];
stack[size - 1] = 0;
size--;
return res;
}
}
public static int size() {
return size;
}
public static int empty() {
if(size == 0) {
return 1;
}
else {
return 0;
}
}
public static int top() {
if(size == 0) {
return -1;
}
else {
return stack[size - 1];
}
}
}
참조 포스팅 글