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
/
linked-list-models.js
10 lines
(9 loc)
•
137 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * 节点结构 */
export
class
Node
{
constructor
(
element
) {
this
.
element
= element
this
.
next
=
undefined
} }