fold (reduce)Let’s talk about reduce. I really like this function. It saves a lot of code and has some declarative prototypes. Some common tool functions, such as flatten, deepCopy, mergeDeep, etc., are implemented elegantly and concisely using reduce. Reduce is also called fold. It is essentially a process of folding an array. It converts multiple values in the array into one value through calculation. Each calculation will be processed by a function. This function is the core element of reduce, called reducer. The reducer function is a two-dimensional function that returns a single value. The common add function is reducer. const addReducer = (x, y) => x + y; The add function is a reducer. The most common usage is to use it in conjunction with the array's reduce method. [1, 2, 3, 4, 5].reduce(addReducer, 0) // 15 To better understand reduce, let's implement this function using different ideas. Using for...ofconst reduce = (f, init, arr) => { let acc = init; for (const item of arr) { acc = f(acc, item); } return acc } // Execute reduceFor(addReducer, 0, [1, 2, 3, 4, 5]) // 15 Using while loopreduce = (f, init, arr) => { let acc = init; let current; let i = 0; while ((current = arr[i++])) { acc = f(acc, current); } return acc; } // Execute reduceFor(addReducer, 0, [1, 2, 3, 4, 5]) // 15 More like fold implementation The above implementation is easy to understand, but it does not seem to reflect the folding process. Folding should be a layer-by-layer squeezing operation on the array. The above implementation actually separates the array and logic, and also introduces more intermediate variables, although there are no side effects internally. function reduce(f, init, arr) { if (arr.length === 0) return init; const [head, ...rest] = arr; return reduceRecursion(f, f(init, head), rest); } // Execute reduceFor(addReducer, 0, [1, 2, 3, 4, 5]) // 15 unfoldThe reverse of fold is unfold. As the name suggests, unfold generates a series of values based on a reverse reducer. At this point, if the original reducer implementation is similar to (a, b) -> c, then the reverse is c -> [a, b]. Generating a sequence is a very basic operation, but even this basic operation has many implementation ideas. Before introducing unfold, let's take a look at other ways to implement sequences and then make a comparison. Sequence Implementation range(0, 100, 5) Expected results
Array ImplementationI won’t say much about this, everyone should know it. range = (first, last, step) => { const n = (last - first) / step + 1; return Array.from({ length: n - 1 }) .map((_, index) => first + index * step); } // You can also use the second parameter of from // Array.from({ length: n }, (_, i) => first + i * step); Generator ImplementationThere is another powerful tool for generating sequences, that is generator, which is used to generate data. The generator returns an iterator, which can also easily generate sequences function* range(first, last, step) { let acc = first; while (acc < last) { yield acc; acc = acc + step; } } [...range(0, 100, 5)] Compared with the two, generator focuses more on the generation process, while Array focuses on the data change process. unfold implementationBefore implementing unfold, let's first sort out the implementation ideas. Like fold, it also uses recursion, and the corresponding data changes must be seen during the implementation process. The general process is as follows
It can be seen that the process is exactly the reverse of fold, which conforms to c -> [a, b]. Because the initial value must be an array, unfold only needs two parameters, which is implemented as follows. function unfold(f, init) { const g = (f, next, acc) => { const result = f(next); const [head, last] = result || []; console.log(last); return result ? g(f, last, acc.concat(head)) : acc; }; return g(f, init, []); } range = R.curry((first, last, step) => unfold(next => next < last && [next, next + step], 0) ) // Execute range(0, 100, 5) SummarizeThe above is a brief introduction to fold and unfold, two very important concepts in FP programming, combined with reduce and an example of generating a sequence. Of course, their functions are not only to generate sequences, but also have many powerful functions. The above is a detailed explanation of the usage of reduce fold unfold in JS. For more information about JS, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to check whether the graphics driver has been successfully installed in Ubuntu
>>: Tutorial on migrating mysql from phpstudy to Linux
First, attach the code below the effect diagram &...
After configuring the tabBar in the WeChat applet...
Table of contents Preface Code Implementation Ide...
How to solve the problem of being unable to acces...
When it comes to understanding web design, many p...
The img tag in XHTML is so-called self-closing, w...
<!--[if IE 6]> Only IE6 can recognize <![...
Learning objectives: The two functions parseInt()...
Table of contents What is the Apollo Configuratio...
The problems and solutions encountered when insta...
How to achieve internationalization in React? The...
Previously, we all used files with the suffix .ms...
The full name of Blog should be Web log, which mea...
1. Create a user: Order: CREATE USER 'usernam...
In Linux operation and configuration work, dual n...