-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathTree.ts
62 lines (48 loc) ยท 2.03 KB
/
Tree.ts
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
class TreeNode<DataType> {
parent: TreeNode<DataType> | null;
children: TreeNode<DataType>[];
data: DataType;
level: number;
constructor(key: DataType, level: number, parent: TreeNode<DataType> | null) {
this.parent = parent;
this.data = key;
this.children = [];
this.level = level;
}
addChlid(key: DataType): void {
this.children.push(new TreeNode(key, this.level + 1, this));
}
printChildNodes(): void {
this.children.forEach((child) => console.log(child.data));
}
getNode(key: DataType): TreeNode<DataType> | null {
if (key === this.data) return this;
if (this.children.length === 0) return null;
for (const child of this.children) {
const res = child.getNode(key);
if (res) return res;
}
return null;
}
removeNode(key: DataType): void {
const target = this.getNode(key);
const targetedChildren = target.parent.children;
target.parent.children = targetedChildren.filter(
(child) => child.data !== key
);
}
}
const root = new TreeNode<string>("root", 1, null);
root.addChlid("Fruit"); // key ๊ฐ์ด Fruit์ธ ๋
ธ๋ ์์ฑ ํ root์ ์์์ผ๋ก ์ถ๊ฐ
root.addChlid("Celebrity"); // key ๊ฐ์ด Celebrity์ธ ๋
ธ๋ ์์ฑ ํ root์ ์์์ผ๋ก ์ถ๊ฐ
root.addChlid("Game"); // key ๊ฐ์ด Game์ธ ๋
ธ๋ ์์ฑ ํ root์ ์์์ผ๋ก ์ถ๊ฐ
root.addChlid("Netflix"); // key๊ฐ์ด Netflix์ธ ๋
ธ๋ ์์ฑ ํ root์ ์์์ผ๋ก ์ถ๊ฐ
root.getNode("Netflix").addChlid("Kingdom"); // Netflix ์์์ผ๋ก Kingdom ์ถ๊ฐ
root.getNode("Kingdom").addChlid("Zombie"); // Kingdom ์์์ผ๋ก Zombie ์ถ๊ฐ
root.getNode("Celebrity").addChlid("aespa"); // Celebrity ์์์ผ๋ก aespa ์ถ๊ฐ
root.getNode("Celebrity").addChlid("psy"); // Celebrity ์์์ผ๋ก psy ์ถ๊ฐ
root.getNode("aespa").addChlid("Winter"); // aespa ์์์ผ๋ก Winter ์ถ๊ฐ
root.getNode("Celebrity").printChildNodes(); // asepa psy
root.removeNode("aespa"); // aespa ๋
ธ๋๋ฅผ ์ญ์
root.getNode("Celebrity").printChildNodes(); // psy
console.log(root.getNode("aespa")); // null