forked from TheAlgorithms/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryLifting.test.js
82 lines (78 loc) · 1.28 KB
/
BinaryLifting.test.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
import binaryLifting from '../BinaryLifting'
// The graph for Test Case 1 looks like this:
//
// 0
// /|\
// / | \
// 1 3 5
// / \ \
// 2 4 6
// \
// 7
// / \
// 11 8
// \
// 9
// \
// 10
test('Test case 1', () => {
const root = 0
const graph = [
[0, 1],
[0, 3],
[0, 5],
[5, 6],
[1, 2],
[1, 4],
[4, 7],
[7, 11],
[7, 8],
[8, 9],
[9, 10]
]
const queries = [
[2, 1],
[6, 1],
[7, 2],
[8, 2],
[10, 2],
[10, 3],
[10, 5],
[11, 3]
]
const kthAncestors = binaryLifting(root, graph, queries)
expect(kthAncestors).toEqual([1, 5, 1, 4, 8, 7, 1, 1])
})
// The graph for Test Case 2 looks like this:
//
// 0
// / \
// 1 2
// / \ \
// 3 4 5
// / / \
// 6 7 8
test('Test case 2', () => {
const root = 0
const graph = [
[0, 1],
[0, 2],
[1, 3],
[1, 4],
[2, 5],
[3, 6],
[5, 7],
[5, 8]
]
const queries = [
[2, 1],
[3, 1],
[3, 2],
[6, 2],
[7, 3],
[8, 2],
[8, 3]
]
const kthAncestors = binaryLifting(root, graph, queries)
expect(kthAncestors).toEqual([0, 1, 0, 1, 0, 2, 0])
})