UNPKG
common-data-structure
Version:
latest (0.12.0)
0.12.0
0.11.0
0.10.0
0.9.0
0.8.0
0.7.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.5
0.3.4
0.3.3
0.2.3
0.2.2
0.1.2
0.1.1
0.1.0
一些javaScript常用数据结构
github.com/LuHong-HL/data-structure
LuHong-HL/data-structure
common-data-structure
/
src
/
models
/
node.js
11 lines
(10 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Node节点类 */
export
class
Node
{
constructor
(key) {
this
.key = key
// 节点值
this
.left =
null
// 左侧子节点引用
this
.right =
null
// 右侧子节点引用
} }