-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs_closure_3.js
77 lines (71 loc) · 1.41 KB
/
js_closure_3.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
function fibonacci(n) {
if (n <= 2) {
return n - 1;
} else {
return fibonacci(n - 1) + fibonacci(n - 2);
}
}
function memorize01(callback) {
const store = {};
const fibo = function (n) {
const isOwn = Object.prototype.hasOwnProperty.call(store, n);
if (!isOwn) {
store[n] = callback(n);
}
return store[n];
};
return fibo;
}
function memorize02() {
const store = {};
const fibo = function (n) {
const isOwn = Object.prototype.hasOwnProperty.call(store, n);
if (!isOwn) {
if (n <= 2) {
store[n] = n - 1;
} else {
const isOwn1 = Object.prototype.hasOwnProperty.call(
store,
n - 1
);
const isOwn2 = Object.prototype.hasOwnProperty.call(
store,
n - 2
);
if (!isOwn1) {
store[n - 1] = fibo(n - 1);
}
if (!isOwn2) {
store[n - 2] = fibo(n - 2);
}
store[n] = store[n - 1] + store[n - 2];
}
}
return store[n];
};
return fibo;
}
function Usecase01() {
console.log(fibonacci(5));
console.log(fibonacci(10));
console.log(fibonacci(15));
console.log(fibonacci(20));
}
function Usecase02() {
const fibo = memorize01(fibonacci);
console.log(fibo(5));
console.log(fibo(10));
console.log(fibo(15));
console.log(fibo(20));
}
function Usecase03() {
const fibo = memorize02();
console.log(fibo(5));
console.log(fibo(10));
console.log(fibo(15));
console.log(fibo(20));
console.log(fibo(20));
}
Usecase01();
Usecase02();
Usecase03();