-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathmultiplication.js
95 lines (55 loc) · 1.77 KB
/
multiplication.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
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Author : OBKoro1
* Date : 2021-10-11 18:39:34
* LastEditors : OBKoro1
* LastEditTime : 2021-11-04 16:04:22
* FilePath : /js-base/src/scene/multiplication.js
* description : 累乘和累乘缓存
* koroFileheader VSCode插件
* Copyright (c) 2021 by OBKoro1, All Rights Reserved.
*/
// 累乘所有参数
// multiplication(1, 2 , 3) = 1 * 2 * 3 = 6
function multiplication() {
}
console.log('res', multiplication(1, 2, 3))
// 实现累乘缓存
// 缓存输出 1,2, 3 下次 2, 3, 1 也能直接获取结果
function multiplicationCatch() {
}
let multiplicationCatchInstance = multiplicationCatch()
console.log('multiplicationCatch', multiplicationCatchInstance(1, 2, 3), multiplicationCatchInstance(2, 3, 1))
// 答案慎看
// 答案慎看
// 答案慎看
// 答案慎看
// 实现累乘
// function multiplication(...params) {
// const res = params.reduce((cur, next) => {
// return cur * next
// }, 1)
// return res
// }
// // 思路:排序, 字符串化, 存在对象里面
// // 取值、计算
// // 累乘 缓存
// function multiplicationCatch() {
// let map = {}
// return function(...params) {
// params.sort((a, b) => a - b) // 排序参数
// let key = params.join(',')
// // 是否有缓存
// if (map[key]) {
// return map[key]
// } else {
// // 没缓存过
// const res = params.reduce((cur, next) => {
// return cur * next
// }, 1)
// map[key] = res
// return res
// }
// }
// }
// let multiplicationCatchInstance = multiplicationCatch()
// console.log('multiplicationCatch', multiplicationCatchInstance(1, 2, 3), multiplicationCatchInstance(2, 3, 1))