8.1:双向链表实现双端队列

8.1:双向链表实现双端队列

  双端队列,玩的head 和tail指针

 

  1、双向链表

 

1 public static class Node<T> {
2         public T value;
3         public Node<T> last;
4         public Node<T> next;
5 
6         public Node(T data) {
7             value = data;
8         }
9     }

 

 1     public static class DoubleEndsQueue<T> {
 2         public Node<T> head;
 3         public Node<T> tail;
 4 
 5         public void addFromHead(T value) {
 6             Node<T> cur = new Node<T>(value);
 7             if (head == null) {
 8                 head = cur;
 9                 tail = cur;
10             } else {
11                 cur.next = head;
12                 head.last = cur;
13                 head = cur;
14             }
15         }
16 
17         public void addFromBottom(T value) {
18             Node<T> cur = new Node<T>(value);
19             if (head == null) {
20                 head = cur;
21                 tail = cur;
22             } else {
23                 cur.last = tail;
24                 tail.next = cur;
25                 tail = cur;
26             }
27         }
28 
29         public T popFromHead() {
30             if (head == null) {
31                 return null;
32             }
33             Node<T> cur = head;
34             if (head == tail) {
35                 head = null;
36                 tail = null;
37             } else {
38                 head = head.next;
39                 cur.next = null;
40                 head.last = null;
41             }
42             return cur.value;
43         }
44 
45         public T popFromBottom() {
46             if (head == null) {
47                 return null;
48             }
49             Node<T> cur = tail;
50             if (head == tail) {
51                 head = null;
52                 tail = null;
53             } else {
54                 tail = tail.last;
55                 tail.next = null;
56                 cur.last = null;
57             }
58             return cur.value;
59         }
60 
61         public boolean isEmpty() {
62             return head == null;
63         }
64 
65     }

 

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...