|
链表用来存储有序的元素集合,与数组不同,链表中的元素并非保存在连续的存储空间内,每个元素由一个存储元素本身的节点和一个指向下一个元素的指针构成。当要移动或删除元素时,只需要修改相应元素上的指针就可以了。对链表元素的操作要比对数组元素的操作效率更高。下面是链表数据结构的示意图:
要实现链表数据结构,关键在于保存head元素(即链表的头元素)以及每一个元素的next指针,有这两部分我们就可以很方便地遍历链表从而操作所有的元素。可以把链表想象成一条锁链,锁链中的每一个节点都是相互连接的,我们只要找到锁链的头,整条锁链就都可以找到了。让我们来看一下具体的实现方式。
首先我们需要一个辅助类,用来描述链表中的节点。这个类很简单,只需要两个属性,一个用来保存节点的值,一个用来保存指向下一个节点的指针。
let Node = function (element) {
this.element = element;
this.next = null;
};
下面是我们链表类的基本骨架:
class LinkedList {
constructor() {
this.length = 0;
this.head = null;
}
append (element) {} // 向链表中添加节点
insert (position, element) {} // 在链表的指定位置插入节点
removeAt (position) {} // 删除链表中指定位置的元素,并返回这个元素的值
remove (element) {} // 删除链表中对应的元素
indexOf (element) {} // 在链表中查找给定元素的索引
getElementAt (position) {} // 返回链表中索引所对应的元素
isEmpty () {} // 判断链表是否为空
size () {} // 返回链表的长度
getHead () {} // 返回链表的头元素
clear () {} // 清空链表
toString () {} // 辅助方法,按指定格式输出链表中的所有元素,方便测试验证结果
}
让我们从查找链表元素的方法getElementAt()开始,因为后面我们会多次用到它。
getElementAt (position) {
if (position < 0 || position >= this.length) return null;
let current = this.head;
for (let i = 0; i < position; i++) {
current = current.next;
}
return current;
}
首先判断参数position的边界值,如果值超出了索引的范围(小于0或者大于length - 1),则返回null。我们从链表的head开始,遍历整个链表直到找到对应索引位置的节点,然后返回这个节点。是不是很简单?和所有有序数据集合一样,链表的索引默认从0开始,只要找到了链表的头(所以我们必须在LinkedList类中保存head值),然后就可以遍历找到索引所在位置的元素。
有了getElementAt()方法,接下来我们就可以很方便地实现append()方法,用来在链表的尾部添加新节点。
append (element) {
let node = new Node(element);
// 如果当前链表为空,则将head指向node
if (this.head === null) this.head = node;
else {
// 否则,找到链表尾部的元素,然后添加新元素
let current = this.getElementAt(this.length - 1);
current.next = node;
}
this.length++;
}
如果链表的head为null(这种情况表示链表为空),则直接将head指向新添加的元素。否则,通过getElementAt()方法找到链表的最后一个节点,将该节点的next指针指向新添加的元素。新添加的元素的next指针默认为null,链表最后一个元素的next值为null。将节点挂到链表上之后,不要忘记将链表的长度加1,我们需要通过length属性来记录链表的长度。
接下来我们要实现insert()方法,可以在链表的任意位置添加节点。
insert (position, element) {
// position不能超出边界值
if (position < 0 || position > this.length) return false;
let node = new Node(element);
if (position === 0) {
node.next = this.head;
this.head = node;
}
else {
let previous = this.getElementAt(position - 1);
node.next = previous.next;
previous.next = node;
}
this.length++;
return true;
}
首先也是要判断参数position的边界值,不能越界。当position的值为0时,表示要在链表的头部插入新节点,对应的操作如下图所示。将新插入节点的next指针指向现在的head,然后更新head的值为新插入的节点。
如果要插入的节点在链表的中间或者尾部,对应的操作如下图。假设链表长度为3,要在位置2插入新节点,我们首先找到位置2的前一个节点previous node,将新节点new node的next指针指向previous node的next所对应的节点,然后再将previous node的next指针指向new node,这样就把新节点挂到链表中了。考虑一下,当插入的节点在链表的尾部,这种情况也是适用的。而如果链表为空,即链表的head为null,则参数position会超出边界条件,从而insert()方法会直接返回false。
最后,别忘了更新length属性的值,将链表的长度加1。
按照相同的方式,我们可以很容易地写出removeAt()方法,用来删除链表中指定位置的节点。
removeAt (position) {
// position不能超出边界值
if (position < 0 || position >= this.length) return null;
let current = this.head;
if (position === 0) this.head = current.next;
else {
let previous = this.getElementAt(position - 1);
current = previous.next;
previous.next = current.next;
}
this.length--;
return current.element;
}
下面两张示意图说明了从链表头部和其它位置删除节点的情况。
如果要删除的节点为链表的头部,只需要将head移到下一个节点即可。如果当前链表只有一个节点,那么下一个节点为null,此时将head指向下一个节点等同于将head设置成null,删除之后链表为空。如果要删除的节点在链表的中间部分,我们需要找出position所在位置的前一个节点,将它的next指针指向position所在位置的下一个节点。总之,删除节点只需要修改相应节点的指针,使断开位置左右相邻的节点重新连接上。被删除的节点由于再也没有其它部分的引用而被丢弃在内存中,等待垃圾回收器来清除。有关JavaScript垃圾回收器的工作原理,可以查看这里。
最后,别忘了将链表的长度减1。
下面我们来看看indexOf()方法,该方法返回给定元素在链表中的索引位置。
indexOf (element) {
let current = this.head;
for (let i = 0; i < this.length; i++) {
if (current.element === element) return i;
current = current.next;
}
return -1;
}
我们从链表的头部开始遍历,直到找到和给定元素相同的元素,然后返回对应的索引号。如果没有找到对应的元素,则返回-1。
链表类中的其它方法都比较简单,就不再分部讲解了,下面是完整的链表类的代码:
 
1 class LinkedList {
2 constructor() {
3 this.length = 0;
4 this.head = null;
5 }
6
7 append (element) {
8 let node = new Node(element);
9
10 // 如果当前链表为空,则将head指向node
11 if (this.head === null) this.head = node;
12 else {
13 // 否则,找到链表尾部的元素,然后添加新元素
14 let current = this.getElementAt(this.length - 1);
15 current.next = node;
16 }
17
18 this.length++;
19 }
20
21 insert (position, element) {
22 // position不能超出边界值
23 if (position < 0 || position > this.length) return false;
24
25 let node = new Node(element);
26
27 if (position === 0) {
28 node.next = this.head;
29 this.head = node;
30 }
31 else {
32 let previous = this.getElementAt(position - 1);
33 node.next = previous.next;
34 previous.next = node;
35 }
36
37 this.length++;
38 return true;
39 }
40
41 removeAt (position) {
42 // position不能超出边界值
43 if (position < 0 || position >= this.length) return null;
44
45 let current = this.head;
46
47 if (position === 0) this.head = current.next;
48 else {
49 let previous = this.getElementAt(position - 1);
50 current = previous.next;
51 previous.next = current.next;
52 }
53
54 this.length--;
55 return current.element;
56 }
57
58 remove (element) {
59 let index = this.indexOf(element);
60 return this.removeAt(index);
61 }
62
63 indexOf (element) {
64 let current = this.head;
65
66 for (let i = 0; i < this.length; i++) {
67 if (current.element === element) return i;
68 current = current.next;
69 }
70
71 return -1;
72 }
73
74 getElementAt (position) {
75 if (position < 0 || position >= this.length) return null;
76
77 let current = this.head;
78 for (let i = 0; i < position; i++) {
79 current = current.next;
80 }
81 return current;
82 }
83
84 isEmpty () {
85 // return this.head === null;
86 return this.length === 0;
87 }
88
89 size () {
90 return this.length;
91 }
92
93 getHead () {
94 return this.head;
95 }
96
97 clear () {
98 this.head = null;
99 this.length = 0;
100 }
101
102 toString () {
103 let current = this.head;
104 let s = '';
105
106 while (current) {
107 let next = current.next;
108 next = next ? next.element : 'null';
109 s += `[element: ${current.element}, next: ${next}] `;
110 current = current.next;
111 }
112
113 return s;
114 }
115 }
LinkedList
在isEmpty()方法中,我们可以根据length是否为0来判断链表是否为空,当然也可以根据head是否为null来进行判断,前提是所有涉及到链表节点添加和移除的方法都要正确地更新length和head。toString()方法只是为了方便测试而编写的,我们来看看几个测试用例:
let linkedList = new LinkedList();
linkedList.append(10);
linkedList.append(15);
linkedList.append(20);
console.log(linkedList.toString());
linkedList.insert(0, 9);
linkedList.insert(2, 11);
linkedList.insert(5, 25);
console.log(linkedList.toString());
console.log(linkedList.removeAt(0));
console.log(linkedList.removeAt(1));
console.log(linkedList.removeAt(3));
console.log(linkedList.toString());
console.log(linkedList.indexOf(20));
linkedList.remove(20);
console.log(linkedList.toString());
linkedList.clear();
console.log(linkedList.size());
下面是执行结果:
双向链表
上面链表中每一个元素只有一个next指针,用来指向下一个节点,这样的链表称之为单向链表,我们只能从链表的头部开始遍历整个链表,任何一个节点只能找到它的下一个节点,而不能找到它的上一个节点。双向链表中的每一个元素拥有两个指针,一个用来指向下一个节点,一个用来指向上一个节点。在双向链表中,除了可以像单向链表一样从头部开始遍历之外,还可以从尾部进行遍历。下面是双向链表的数据结构示意图:
由于双向链表具有单向链表的所有特性,因此我们的双向链表类可以继承自前面的单向链表类,不过辅助类Node需要添加一个prev属性,用来指向前一个节点。
let Node = function (element) {
this.element = element;
this.next = null;
this.prev = null;
};
下面是继承自LinkedList类的双向链表类的基本骨架:
class DoubleLinkedList extends LinkedList {
constructor() {
super();
this.tail = null;
}
}
先来看看append()方法的实现。当链表为空时,除了要将head指向当前添加的节点外,还要将tail也指向当前要添加的节点。当链表不为空时,直接将tail的next指向当前要添加的节点node,然后修改node的prev指向旧的tail,最后修改tail为新添加的节点。我们不需要从头开始遍历整个链表,而通过tail可以直接找到链表的尾部,这一点比单向链表的操作要更方便。最后将length的值加1,修改链表的长度。
append (element) {
let node = new Node(element);
// 如果链表为空,则将head和tail都指向当前添加的节点
if (this.head === null) {
this.head = node;
this.tail = node;
}
else {
// 否则,将当前节点添加到链表的尾部
this.tail.next = node;
node.prev = this.tail;
this.tail = node;
}
this.length++;
}
由于双向链表可以从链表的尾部往前遍历,所以我们修改了getElementAt()方法,对基类中单向链表的方法进行了改写。当要查找的元素的索引号大于链表长度的一半时,从链表的尾部开始遍历。
getElementAt (position) {
if (position < 0 || position >= this.length) return null;
// 从后往前遍历
if (position > Math.floor(this.length / 2)) {
let current = this.tail;
for (let i = this.length - 1; i > position; i--) {
current = current.prev;
}
return current;
}
// 从前往后遍历
else {
return super.getElementAt(position);
}
}
有两种遍历方式,从前往后遍历调用的是基类单向链表里的方法,从后往前遍历需要用到节点的prev指针,用来查找前一个节点。
我们同时还需要修改insert()和removeAt()这两个方法。记住,与单向链表唯一的区别就是要同时维护head和tail,以及每一个节点上的next和prev指针。
insert (position, element) {
if (position < 0 || position > this.length) return false;
// 插入到尾部
if (position === this.length) this.append(element);
else {
let node = new Node(element);
// 插入到头部
if (position === 0) {
if (this.head === null) {
this.head = node;
this.tail = node;
}
else {
node.next = this.head;
this.head.prev = node;
this.head = node;
}
}
// 插入到中间位置
else {
let current = this.getElementAt(position);
let previous = current.prev;
node.next = current;
node.prev = previous;
previous.next = node;
current.prev = node;
}
this.length++; }
return true;
}
removeAt (position) {
// position不能超出边界值
if (position < 0 || position >= this.length) return null;
let current = this.head;
let previous;
// 移除头部元素
if (position === 0) {
this.head = current.next;
this.head.prev = null;
if (this.length === 1) this.tail = null;
}
// 移除尾部元素
else if (position === this.length - 1) {
current = this.tail;
this.tail = current.prev;
this.tail.next = null;
}
// 移除中间元素
else {
current = this.getElementAt(position);
previous = current.prev;
previous.next = current.next;
current.next.prev = previous;
}
this.length--;
return current.element;
}
操作过程中需要判断一些特殊情况,例如链表的头和尾,以及当前链表是否为空等等,否则程序可能会在某些特殊情况下导致越界和报错。下面是一个完整的双向链表类的代码:
 
1 class DoubleLinkedList extends LinkedList.LinkedList {
2 constructor() {
3 super();
4 this.tail = null;
5 }
6
7 append (element) {
8 let node = new Node(element);
9
10 // 如果链表为空,则将head和tail都指向当前添加的节点
11 if (this.head === null) {
12 this.head = node;
13 this.tail = node;
14 }
15 else {
16 // 否则,将当前节点添加到链表的尾部
17 this.tail.next = node;
18 node.prev = this.tail;
19 this.tail = node;
20 }
21
22 this.length++;
23 }
24
25 getElementAt (position) {
26 if (position < 0 || position >= this.length) return null;
27
28 // 从后往前遍历
29 if (position > Math.floor(this.length / 2)) {
30 let current = this.tail;
31 for (let i = this.length - 1; i > position; i--) {
32 current = current.prev;
33 }
34 return current;
35 }
36 // 从前往后遍历
37 else {
38 return super.getElementAt(position);
39 }
40 }
41
42 insert (position, element) {
43 if (position < 0 || position > this.length) return false;
44
45 // 插入到尾部
46 if (position === this.length) this.append(element);
47 else {
48 let node = new Node(element);
49
50 // 插入到头部
51 if (position === 0) {
52 if (this.head === null) {
53 this.head = node;
54 this.tail = node;
55 }
56 else {
57 node.next = this.head;
58 this.head.prev = node;
59 this.head = node;
60 }
61 }
62 // 插入到中间位置
63 else {
64 let current = this.getElementAt(position);
65 let previous = current.prev;
66 node.next = current;
67 node.prev = previous;
68 previous.next = node;
69 current.prev = node;
70 }
71 }
72
73 this.length++;
74 return true;
75 }
76
77 removeAt (position) {
78 // position不能超出边界值
79 if (position < 0 || position >= this.length) return null;
80
81 let current = this.head;
82 let previous;
83
84 // 移除头部元素
85 if (position === 0) {
86 this.head = current.next;
87 this.head.prev = null;
88 if (this.length === 1) this.tail = null;
89 }
90 // 移除尾部元素
91 else if (position === this.length - 1) {
92 current = this.tail;
93 this.tail = current.prev;
94 this.tail.next = null;
95 }
96 // 移除中间元素
97 else {
98 current = this.getElementAt(position);
99 previous = current.prev;
100 previous.next = current.next;
101 current.next.prev = previous;
102 }
103
104 this.length--;
105 return current.element;
106 }
107
108 getTail () {
109 return this.tail;
110 }
111
112 clear () {
113 super.clear();
114 this.tail = null;
115 }
116
117 toString () {
118 let current = this.head;
119 let s = '';
120
121 while (current) {
122 let next = current.next;
123 let previous = current.prev;
124 next = next ? next.element : 'null';
125 previous = previous ? previous.element : 'null';
126 s += `[element: ${current.element}, prev: ${previous}, next: ${next}] `;
127 current = current.next;
128 }
129
130 return s;
131 }
132 }
DoubleLinkedList
我们重写了toString()方法以方便更加清楚地查看测试结果。下面是一些测试用例:
let doubleLinkedList = new DoubleLinkedList();
doubleLinkedList.append(10);
doubleLinkedList.append(15);
doubleLinkedList.append(20);
doubleLinkedList.append(25);
doubleLinkedList.append(30);
console.log(doubleLinkedList.toString());
console.log(doubleLinkedList.getElementAt(1).element);
console.log(doubleLinkedList.getElementAt(2).element);
console.log(doubleLinkedList.getElementAt(3).element);
doubleLinkedList.insert(0, 9);
doubleLinkedList.insert(4, 24);
doubleLinkedList.insert(7, 35);
console.log(doubleLinkedList.toString());
console.log(doubleLinkedList.removeAt(0));
console.log(doubleLinkedList.removeAt(1));
console.log(doubleLinkedList.removeAt(5));
console.log(doubleLinkedList.toString());
对应的结果如下:
[element: 10, prev: null, next: 15] [element: 15, prev: 10, next: 20] [element: 20, prev: 15, next: 25] [element: 25, prev: 20, next: 30] [element: 30, prev: 25, next: null]
15
20
25
[element: 9, prev: null, next: 10] [element: 10, prev: 9, next: 15] [element: 15, prev: 10, next: 20] [element: 20, prev: 15, next: 24] [element: 24, prev: 20, next: 25] [element: 25, prev: 24, next: 30] [element: 30, prev: 25, next: 35] [element: 35, prev: 30, next: null]
9
15
30
[element: 10, prev: null, next: 20] [element: 20, prev: 10, next: 24] [element: 24, prev: 20, next: 25] [element: 25, prev: 24, next: 35] [element: 35, prev: 25, next: null]
循环链表
顾名思义,循环链表的尾部指向它自己的头部。循环链表可以有单向循环链表,也可以有双向循环链表。下面是单向循环链表和双向循环链表的数据结构示意图:
在实现循环链表时,需要确保最后一个元素的next指针指向head。下面是单向循环链表的完整代码:
 
1 class CircularLinkedList extends LinkedList.LinkedList {
2 constructor () {
3 super();
4 }
5
6 append (element) {
7 let node = new LinkedList.Node(element);
8
9 if (this.head === null) this.head = node;
10 else {
11 let current = this.getElementAt(this.length - 1);
12 current.next = node;
13 }
14
15 node.next = this.head; // 将新添加的元素的next指向head
16 this.length++;
17 }
18
19 insert (position, element) {
20 // position不能超出边界值
21 if (position < 0 || position > this.length) return false;
22
23 let node = new LinkedList.Node(element);
24
25 if (position === 0) {
26 node.next = this.head;
27 let current = this.getElementAt(this.length - 1);
28 current.next = node;
29 this.head = node;
30 }
31 else {
32 let previous = this.getElementAt(position - 1);
33 node.next = previous.next;
34 previous.next = node;
35 }
36
37 this.length++;
38 return true;
39 }
40
41 removeAt (position) {
42 if (position < 0 || position >= this.length) return null;
43
44 let current = this.head;
45
46 if (position === 0) this.head = current.next;
47 else {
48 let previous = this.getElementAt(position - 1);
49 current = previous.next;
50 previous.next = current.next;
51 }
52 this.length--;
53
54 if (this.length > 1) {
55 let last = this.getElementAt(this.length - 1);
56 last.next = this.head;
57 }
58
59
60 return current.element;
61 }
62
63 toString () {
64 let current = this.head;
65 let s = '';
66
67 for (let i = 0; i < this.length; i++) {
68 let next = current.next;
69 next = next ? next.element : 'null';
70 s += `[element: ${current.element}, next: ${next}] `;
71 current = current.next;
72 }
73
74 return s;
75 }
76 }
CircularLinkedList
单向循环链表的测试用例:
let circularLinkedList = new CircularLinkedList();
circularLinkedList.append(10);
circularLinkedList.append(15);
circularLinkedList.append(20);
console.log(circularLinkedList.toString());
circularLinkedList.insert(0, 9);
circularLinkedList.insert(3, 25);
console.log(circularLinkedList.toString());
console.log(circularLinkedList.removeAt(0));
console.log(circularLinkedList.toString());
对应的测试结果:
下一章我们将介绍如何用JavaScript来实现集合这种数据结构。
this.length++;
来源:https://www.cnblogs.com/jaxu/p/11277732.html |