You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
/**
|
|
* File: stack.java
|
|
* Created Time: 2022-11-25
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
package chapter_stack_and_queue;
|
|
|
|
import java.util.*;
|
|
|
|
public class stack {
|
|
public static void main(String[] args) {
|
|
/* 初始化栈 */
|
|
Stack<Integer> stack = new Stack<>();
|
|
|
|
/* 元素入栈 */
|
|
stack.push(1);
|
|
stack.push(3);
|
|
stack.push(2);
|
|
stack.push(5);
|
|
stack.push(4);
|
|
System.out.println("栈 stack = " + stack);
|
|
|
|
/* 访问栈顶元素 */
|
|
int peek = stack.peek();
|
|
System.out.println("栈顶元素 peek = " + peek);
|
|
|
|
/* 元素出栈 */
|
|
int pop = stack.pop();
|
|
System.out.println("出栈元素 pop = " + pop + ",出栈后 stack = " + stack);
|
|
|
|
/* 获取栈的长度 */
|
|
int size = stack.size();
|
|
System.out.println("栈的长度 size = " + size);
|
|
|
|
/* 判断是否为空 */
|
|
boolean isEmpty = stack.isEmpty();
|
|
System.out.println("栈是否为空 = " + isEmpty);
|
|
}
|
|
}
|