add linked list stack

dev
ehlxr 2021-04-16 09:05:48 +08:00
parent 6c8b22b204
commit 612feb1e9e
1 changed files with 10 additions and 13 deletions

View File

@ -31,10 +31,7 @@ import java.util.Scanner;
* @since 2021-04-15 22:18.
*/
public class LinkedListStackDemo {
public static void main(String[] args) {
//测试一下ArrayStack 是否正确
//先创建一个ArrayStack对象->表示栈
LinkedListStack stack = new LinkedListStack(4);
String key;
boolean loop = true; //控制是否退出菜单
@ -119,9 +116,9 @@ class LinkedListStack {
Node temp = head;
while (true) {
if (temp.next == null) {
throw new RuntimeException("栈空");
}
// if (temp.next == null) {
// throw new RuntimeException("栈空~~~");
// }
if (temp.next.next == null) {
top--;
int id = temp.next.id;
@ -152,23 +149,23 @@ class LinkedListStack {
}
/**
*
*/
private void revert() {
Node pre = null;
Node cur = head.next;
while (cur != null) {
Node temp = cur;
cur = cur.next;
temp.next = pre;
pre = temp;
Node next = cur.next;
cur.next = pre;
pre = cur;
cur = next;
}
head.next = pre;
}
}
class Node {
public int id;
public Node next;