스택(Java 컬렉션)
1565 단어 beginnersjavaprogrammingstack
창고 데이터 구조에는 두 가지 가장 중요한 조작이 있는데 그것이 바로push와pop이다.push 작업은 원소를 창고에 삽입하고 pop 작업은 창고 맨 위에서 원소를 제거합니다.
Java 스택 예:
예1:
import java.util.*;
public class Main {
public static void main(String[] args) {
Stack<String> stack = new Stack<>();
stack.push("jack");
stack.push("john");
stack.push("jacob");
System.out.println("Before Pop");
System.out.println(stack);
stack.pop();
System.out.println("After Pop");
System.out.println(stack);
예2:import java.util.*;
public class Main {
public static void main(String[] args) {
Stack<String> stack = new Stack<>();
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the Length:");
int number = scanner.nextInt();
scanner.nextLine();
for (int i= 1;i<=number;i++)
{
stack.push(scanner.nextLine());
}
System.out.println("Before Pop");
System.out.println(stack);
System.out.println("Pop Count:");
int popNumber = scanner.nextInt();
scanner.nextLine();
for (int i=1;i<=popNumber; i++)
{
stack.pop();
}
System.out.println(stack);
}
}
Reference
이 문제에 관하여(스택(Java 컬렉션)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jps27cse/stack-java-collections-2n4o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)