hello-algo/codes/java/chapter_stack_and_queue/stack.java

41 lines
1 KiB
Java
Raw Normal View History

/**
* File: stack.java
* Created Time: 2022-11-25
* Author: Krahets (krahets@163.com)
*/
2022-11-10 03:40:57 +08:00
package chapter_stack_and_queue;
import java.util.*;
public class stack {
public static void main(String[] args) {
/* 初始化栈 */
2023-03-12 04:14:36 +08:00
Stack<Integer> stack = new Stack<>();
2022-11-10 03:40:57 +08:00
/* 元素入栈 */
2023-03-12 04:14:36 +08:00
stack.push(1);
stack.push(3);
stack.push(2);
stack.push(5);
stack.push(4);
2022-11-10 03:40:57 +08:00
System.out.println("栈 stack = " + stack);
/* 访问栈顶元素 */
2023-03-12 04:14:36 +08:00
int peek = stack.peek();
2022-11-10 03:40:57 +08:00
System.out.println("栈顶元素 peek = " + peek);
/* 元素出栈 */
2023-03-12 04:14:36 +08:00
int pop = stack.pop();
2022-11-10 03:40:57 +08:00
System.out.println("出栈元素 pop = " + pop + ",出栈后 stack = " + stack);
/* 获取栈的长度 */
int size = stack.size();
System.out.println("栈的长度 size = " + size);
/* 判断是否为空 */
boolean isEmpty = stack.isEmpty();
2022-11-30 02:27:26 +08:00
System.out.println("栈是否为空 = " + isEmpty);
2022-11-10 03:40:57 +08:00
}
}