【代码】线性表之栈

前言

线性表之栈的Java版实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com;

public class Stack<T> {

public Node head;
public int stackLength;

private class Node {
public T data;
public Node next;

public Node(T data, Node next) {
this.data = data;
this.next = next;
}
}

// 初始化
public Stack() {
head = new Node(null, null);
stackLength = 0;
}

/**
* 判断栈元素是否为空
* @return
*/
public boolean isEmpyt() {
return stackLength==0;
}

/**
* 获取栈中的元素个数
* @return
*/
public int size() {
return stackLength;
}

/**
* 压入栈
* @param t
*/
public void push(T t) {
// 创建一个新结点
Node node = new Node(t, null);
// 将新结点的下一个结点设置为头结点的下一个结点
node.next = head.next;
// 将头结点的下一个结点设置为新结点
head.next = node;
// 长度自增
stackLength++;
}

/**
* 弹出栈
* @return
*/
public T pop() {
// 如果为栈为空,则跳过
if (isEmpyt()) {
return null;
}
// 取出头结点的下一个结点
Node top = head.next;
// 将头结点的下一个结点设置为头结点的下两个结点
head.next = head.next.next;
// 长度自减
stackLength--;
return top.data;
}

public String toString() {
String str = "";
Node n = head;
while (n.next!=null) {
n = n.next;
str += n.data + " ";
}
return str;
}

}

完成

参考文献

哔哩哔哩——黑马程序员