-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathred-black-bst.js
240 lines (205 loc) · 6.23 KB
/
red-black-bst.js
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
* 把 nodeA 的父节点设置为 nodeB 的父节点
* 1. 确定 nodeA 是其父节点的左子节点还是右子节点
* 2. 把 nodeA 父节点对应位置的子节点设置为 nodeB
*/
const resetParent = (nodeA, nodeB) => {
if (nodeA.parentNode) {
// 我们不知道当前节点是其父节点的左子节点还是右子节点,
// 因此需要进行判断
const parentChildPosition = nodeA.isLeftChild
? 'leftChild'
: 'rightChild';
nodeA.parentNode[parentChildPosition] = nodeB;
nodeB.parentNode = nodeA.parentNode;
}
};
// 两个节点相互交换颜色
const resetColor = (nodeA, nodeB) => {
const targetColor = nodeA.color;
nodeA.color = nodeB.color;
nodeB.color = targetColor;
};
const rotateLeft = (node) => {
// 获取 a 的右子节点 aChildRight
const targetNode = node.rightChild;
// 如果 a 还有父节点,则把 aChildRight 作为 a 父节点的右子节点
// 同时,把 aChildRight 的父节点设置为了 a 的父节点
resetParent(node, targetNode);
// 之后,aChildRight 的原左子节点成为 a 的右子节点
node.rightChild = targetNode.leftChild;
if (targetNode.leftChild) {
targetNode.leftChild.parentNode = node;
}
targetNode.leftChild = node;
node.parentNode = targetNode;
resetColor(targetNode, node);
return targetNode;
};
const rotateRight = (node) => {
// 获取 a 的右子节点 aChildLeft
const targetNode = node.leftChild;
// 如果 a 还有父节点,则把 aChildLeft 作为 a 父节点的左子节点
// 同时,把 aChildLeft 的父节点设置为了 a 的父节点
resetParent(node, targetNode);
// 之后,aChildRight 的原右子节点成为 a 的左子节点
node.leftChild = targetNode.rightChild;
if (targetNode.rightChild) {
targetNode.rightChild.parentNode = node;
}
targetNode.rightChild = node;
node.parentNode = targetNode;
resetColor(targetNode, node);
return targetNode;
};
/*
* 当一个节点的左右两个子节点都是红节点时,
* 则将这两个红子节点转换为黑色,同时把它们的父节点转换为红色
*/
const flipColor = (node) => {
const leftChild = node.leftChild;
const rightChild = node.rightChild;
leftChild.color = 'black';
rightChild.color = 'black';
if (node.parentNode) {
node.color = 'red';
}
};
class Node {
constructor(options) {
const {
val,
color = 'red',
parentNode = null,
} = options;
this.val = val;
this.color = color;
this.leftNode = null;
this.rightNode = null;
this.parentNode = parentNode;
}
get node() {
return this.val;
}
set node(val) {
this.val = val;
}
// get left child node value
get left() {
return this.leftNode ? this.leftNode.node : null;
}
// get left child node
get leftChild() {
return this.leftNode;
}
// set left child node
set leftChild(leftNode) {
if (leftNode !== null && this.node < leftNode.node) {
throw new Error('Left node value should be smaller than root node value!');
}
this.leftNode = leftNode;
}
// get right child node value
get right() {
return this.rightNode ? this.rightNode.node : null;
}
// get right child node
get rightChild() {
return this.rightNode;
}
// set right child node
set rightChild(rightNode) {
if (rightNode !== null && this.node > rightNode.node) {
throw new Error('Right node value should be bigger than root node value!');
}
this.rightNode = rightNode;
}
// 判断当前节点属于父节点的左子节点还是右子节点
get isLeftChild() {
return this.parentNode.leftChild === this;
}
get isRightChild() {
return this.parentNode.rightChild === this;
}
get hasRedLeftChild() {
return this.leftChild && this.leftChild.color === 'red';
}
get hasRedRightChild() {
return this.rightChild && this.rightChild.color === 'red';
}
// 和普通二叉搜索树的 find 方法一样
find(val) {
// 若 target === 根节点的值,则直接查找成功
if (this.node === val) return this;
if (val < this.node) {
// 若 target < 根节点的值,则搜索左子节点
if (this.left === null) return null;
return this.leftChild.find(val);
} else if (val > this.node) {
// 若 target > 根节点的值,则搜索右子节点
if (this.right === null) return null;
return this.rightChild.find(val);
}
return null;
}
insert(val) {
if (this.node < val) {
if (this.rightChild === null) {
this.rightChild = new Node({
val,
color: 'red',
parentNode: this,
});
} else {
this.rightChild.insert(val);
}
} else if (this.node > val) {
if (this.leftChild === null) {
this.leftChild = new Node({
val,
color: 'red',
parentNode: this,
});
} else {
this.leftChild.insert(val);
}
}
// 插入完成之后从底部开始检查平衡
this.checkBalance();
}
checkBalance() {
let targetNode = this;
targetNode.flipColor();
// 检查是否需要左旋
if (targetNode.hasRedRightChild) {
targetNode = rotateLeft(targetNode);
}
// 因为左旋之后可能会出现左左的情况,检查是否需要右旋
if (targetNode.hasRedLeftChild && targetNode.color === 'red') {
targetNode = rotateRight(targetNode.parentNode);
}
targetNode.flipColor();
}
flipColor() {
if (this.hasRedLeftChild && this.hasRedRightChild) {
flipColor(this);
}
}
}
const bst = new Node({
val: 10,
color: 'black'
});
console.log('\nInsert 5 15');
bst.insert(5);
bst.insert(15);
console.log(`bst.left: ${bst.left}, bst.leftColor: ${bst.leftChild.color}`);
console.log(`bst.right: ${bst.right}, bst.rightColor: ${bst.rightChild.color}`);
console.log('\nInsert 7');
bst.insert(7);
console.log(`bst.left: ${bst.left}, bst.leftColor: ${bst.leftChild.color}`);
console.log(`bst.leftChild.left: ${bst.leftChild.left}, bst.left.leftChildColor: ${bst.leftChild.leftChild.color}`);
console.log('\nInsert 6');
bst.insert(6);
console.log(`bst.left: ${bst.left}, bst.leftColor: ${bst.leftChild.color}`);
console.log(`bst.leftChild.left: ${bst.leftChild.left}, bst.left.leftChildColor: ${bst.leftChild.leftChild.color}`);