중단 기능이있는 축소 버전은 '변환'으로 구현할 수 있습니다. 밑줄로.
구현 감소가 현재 사용중인 데이터 구조를 변경할 필요가 없도록 구성 플래그를 사용하여 구현하려고했습니다.
const transform = (arr, reduce, init, config = {}) => {
const result = arr.reduce((acc, item, i, arr) => {
if (acc.found) return acc
acc.value = reduce(config, acc.value, item, i, arr)
if (config.stop) {
acc.found = true
}
return acc
}, { value: init, found: false })
return result.value
}
module.exports = transform
사용법 1, 간단한 것
const a = [0, 1, 1, 3, 1]
console.log(transform(a, (config, acc, v) => {
if (v === 3) { config.stop = true }
if (v === 1) return ++acc
return acc
}, 0))
사용법 2, config를 내부 변수로 사용
const pixes = Array(size).fill(0)
const pixProcessed = pixes.map((_, pixId) => {
return transform(pics, (config, _, pic) => {
if (pic[pixId] !== '2') config.stop = true
return pic[pixId]
}, '0')
})
Usage3, 구성을 외부 변수로 캡처
const thrusts2 = permute([9, 8, 7, 6, 5]).map(signals => {
const datas = new Array(5).fill(_data())
const ps = new Array(5).fill(0)
let thrust = 0, config
do {
config = {}
thrust = transform(signals, (_config, acc, signal, i) => {
const res = intcode(
datas[i], signal,
{ once: true, i: ps[i], prev: acc }
)
if (res) {
[ps[i], acc] = res
} else {
_config.stop = true
}
return acc
}, thrust, config)
} while (!config.stop)
return thrust
}, 0)
current
위의 코드 는 무엇입니까 ? 나는 이것들이 어떻게 똑같은 일을 할 수 있는지 모르겠습니다. 어떤 경우에는 초기에 같은 휴식 방법이있다some
,every
,find