Date(10.3.2021)<对java的栈类的一些总结>
2021/10/3 20:11:16
本文主要是介绍Date(10.3.2021)<对java的栈类的一些总结>,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Java stack 类
栈是Vector的一个子类,它实现了一个标准的后进先出的栈。
堆栈只定义了默认构造函数,用来创建一个空栈。 堆栈除了包括由Vector定义的所有方法,也定义了自己的一些方法。
Stack()
序号 | 方法描述 |
---|---|
1 | boolean empty() 测试堆栈是否为空。 |
2 | Object peek( )查看堆栈顶部的对象,但不从堆栈中移除它。 |
3 | Object pop( )移除堆栈顶部的对象,并作为此函数的值返回该对象。 |
4 | Object push(Object element)把项压入堆栈顶部。 |
5 | int search(Object element)返回对象在堆栈中的位置,以 1 为基数。 |
点击查看代码
import java.util.*; public class StackDemo { static void showpush(Stack<Integer> st, int a) { st.push(new Integer(a)); System.out.println("push(" + a + ")"); System.out.println("stack: " + st); } static void showpop(Stack<Integer> st) { System.out.print("pop -> "); Integer a = (Integer) st.pop(); System.out.println(a); System.out.println("stack: " + st); } public static void main(String args[]) { Stack<Integer> st = new Stack<Integer>(); System.out.println("stack: " + st); showpush(st, 42); showpush(st, 66); showpush(st, 99); showpop(st); showpop(st); showpop(st); try { showpop(st); } catch (EmptyStackException e) { System.out.println("empty stack"); } } }
stack: [ ]
push(42)
stack: [42]
push(66)
stack: [42, 66]
push(99)
stack: [42, 66, 99]
pop -> 99
stack: [42, 66]
pop -> 66
stack: [42]
pop -> 42
stack: [ ]
pop -> empty stack
一道相关题型的练习
点击查看代码
public ListNode reverseList(ListNode head) { Stack<ListNode> stack = new Stack<>(); ListNode start = new ListNode(0, new ListNode(0)); ListNode temp = start; while (head != null) { stack.push(head); head = head.next; } while (!stack.isEmpty()) { temp.next = stack.pop(); temp = temp.next; } temp.next = null; return start.next; }
这篇关于Date(10.3.2021)<对java的栈类的一些总结>的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南