-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
295 lines (281 loc) · 11.3 KB
/
index.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
var findLHS = function (nums) {
/** 最大值和最小值之间的差别 正好是 1 不改变其余元素的顺序而得到
* 前缀和转化为前缀差
* [1,3,2,2,5,2,3,7] => [2,-1,0,3,-3, 1, 4] => 计算和的绝对值为 0 或 1 的总数 =》 [-1,0,3,-3, 1], 总数为5
*/
const len = nums.length
let max = 0,
useMap = {}
// [-3,-3,-1,-1,-1,-2] 输出3 预期 4
for (let i = 0; i < len; i++) {
// 如果剩余长度已经小于当前获取的最大序列,那么没有必要再遍历了
if (len - i < max) break
// countDep[0]表示当前为min, countDep[1]表示当前为max
let countDep = [1, 1],
canUse = [false, false]
const baseNum = nums[i]
if (useMap[baseNum] !== undefined) continue
useMap[baseNum] = true
for (let j = i + 1; j < len; j++) {
const dif = nums[j] - baseNum
if (dif === 1) {
// 说明当前项比 nums[i] 大
canUse[0] = true
countDep[0]++
}
if (dif === -1) {
canUse[1] = true
countDep[1]++
}
if (dif === 0) {
countDep[0]++
countDep[1]++
}
}
if (canUse[0]) {
max = Math.max(max, countDep[0])
}
if (canUse[1]) {
max = Math.max(max, countDep[1])
}
}
return max
}
console.error('---------- aiden --------------', findLHS([-3, -3, -1, -1, -1, -2]))
</script>
<script>
var fileCombination = function (target) {
const res = []
const limit = Math.ceil(target / 2)
for (let i = 1; i < limit + 1; i++) {
let count = i
let temp = [i]
for (let j = i + 1; j <= limit + 1; j++) {
count += j
temp.push(j)
if (count === target) {
res.push(temp)
break
} else if (count > target) {
break
}
}
}
return res
}
console.error('---------- fileCombination --------------', fileCombination(12))
</script>
<script>
var threeSum = function (nums) {
const numLen = nums.length
const targetSet = new Set()
// 因为目标是不重复的三元组,所以遍历的时候需要先排序,跳过相同的初始值
nums.sort((a, b) => a - b)
for (let i = 0; i < numLen; i++) {
// 跳过相同的初始值
if (nums[i] == nums[i - 1]) continue
const sumMap = {}
for (let j = i + 1; j < numLen; j++) {
const cur = nums[j]
const dif = 0 - nums[i] - cur
// 满足 i!==j i!==k j!==k
if (sumMap[cur] !== undefined) {
targetSet.add([nums[i], cur, nums[sumMap[cur]]])
break
} else {
sumMap[dif] = j
}
}
}
return Array.from(targetSet)
}
threeSum([0, 0, 0, 0])
</script>
<script>
var A = [3, 2, 1],
B = [],
C = []
var hanota = function (A, B, C) {
const size = A.length
/**
*
* @param {*} size 需要移动的盘子数量
* @param {*} start 当前移动的盘子
* @param {*} use 辅助移动的盘子
* @param {*} target 目标盘子
* @returns
*/
function dfs(size, a, b, c) {
if (size === 1) {
c.push(a.pop())
return
}
dfs(size - 1, a, c, b) // 将n-1堆叠到B
c.push(a.pop()) // 将最底下最大的移动到C
dfs(size - 1, b, a, c) // 将存放n-1的B移动到C
}
dfs(size, A, B, C)
}
hanota(A, B, C)
console.log(A, B, C)
</script>
<script>
var trailingZeroes = function (n) {
// 先求出阶乘
let count = 1
while (n > 0) {
count = count * n
n--
}
console.log(count, '???')
// 求出尾0
let res = 0
const str = count + ''
for (let i = str.length - 1; i >= 0; i--) {
if (str[i] === '0') {
res++
} else {
break
}
}
return res
}
console.error('---------- aiden --------------', trailingZeroes(5))
</script>
<script>
var combinationSum = function (candidates, target) {
// 综上,问题就是从一个集合中,找到能组成和为 target 的数集,且保证集合内无重复元素
// 边界处理
candidates.sort((a, b) => a - b)
if (candidates[0] > target) return []
const len = candidates.length
const difMap = {}
const res = []
for (let i = 0; i < len; i++) {
const num = candidates[i]
if (target % num === 0) {
const getLen = target / num
const list = new Array(getLen).fill(num)
res.push(list)
} else {
let dif = target - num
const count = [num]
let flag = true
while (dif > 0 && flag) {
if (difMap[dif]) {
const countUse = [...difMap[dif], ...count]
res.push(countUse)
flag = false
} else {
dif -= num
if (dif >= 0) {
count.push(num)
} else {
count.push(dif)
}
difMap[dif] = [...count]
}
}
}
}
console.log(difMap)
return res
}
console.log(combinationSum([2, 3, 6, 7], 7))
</script>
<script>
// console.log('hello world')
// const isHappy = function (n) {
// let numMap = new Set()
// let curNum = n + ''
// let happyFlag = false
// function transformHappy(arg) {
// const totalNum = arg.reduce((total, item) => {
// total += Math.pow(item, 2) // 字符会隐式转换为num类型
// return total
// }, 0)
// return totalNum + ''
// }
// console.log('111')
// // debugger
// while (!numMap.has(curNum) && !happyFlag) {
// numMap.add(curNum)
// curNum = transformHappy(curNum.split(''))
// if (curNum === '1') happyFlag = true
// }
// return happyFlag
// }
// isHappy(19)
// var mySqrt = function (x) {
// // 二分查找
// let left = 0,
// right = x,
// ans = -1
// while (left <= right) {
// const mid = left + (right - left) / 2
// if (mid * mid <= x) {
// ans = mid
// left = mid + 1
// } else {
// right = mid - 1
// }
// }
// return ans
// }
// console.log(mySqrt(8))
</script>
<script>
// var licenseKeyFormatting = function (s, k) {
// s = s.toUpperCase()
// if (s.length === 1) return s.replace(/-/g, '')
// let getFirst = s.replace(/-/g, '')
// const firstLen = getFirst.length % k || k
// const str = s.split('')
// const strLen = str.length
// let flowStr = '' // 上一节处理溢出的字符
// let res = ''
// for (let i = 0; i < strLen; i++) {
// if (str[i] === '-') continue
// const item = flowStr + str[i]
// let count = item
// // 第一行特殊处理-或者说第一段数据
// if (i === 0 || res === '') {
// if (item.length < firstLen) {
// flowStr = count
// continue
// } else {
// count = item.slice(0, firstLen)
// flowStr = item.slice(firstLen, item.length)
// }
// } else if (item.length > k) {
// count = item.slice(0, k)
// flowStr = item.slice(k, item.length)
// } else if (item.length < k) {
// // 小于k ,更新溢出的字符
// flowStr = item
// continue
// } else {
// flowStr = ''
// }
// if (res === '') {
// res += count
// } else {
// res = res + '-' + count
// }
// }
// return flowStr ? res + '-' + flowStr : res
// }
// console.log(licenseKeyFormatting('5F3Z-2e-9-w', 4))
</script>
</body>
</html>