미분류/Algorithm 썸네일형 리스트형 JAVA STACK 구현 스택을 구현해보았다.package array2; import java.util.Stack; public class StackTest { public static int[] stack = new int[1000]; public static int top = -1; public static boolean push(int value) { if(top>=stack.length) return false; top++; stack[top] = value; return true; } public static int pop() { if(top==-1) return -1; int value = stack[top--]; return value; } public static void main(String[] args) { p.. 이전 1 다음