1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-30 12:10:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/记忆函数 II [memoize-ii].html

59 lines
2.3 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p>现给定一个函数 <code>fn</code> ,返回该函数的一个 <strong>记忆化</strong> 版本。</p>
2023-04-23 22:41:08 +08:00
2023-12-09 18:42:21 +08:00
<p>一个 <strong>记忆化</strong> 的函数是一个函数,它不会被相同的输入调用两次。而是会返回一个缓存的值。</p>
2023-04-23 22:41:08 +08:00
2023-12-09 18:42:21 +08:00
<p>函数 <code>fn</code> 可以是任何函数,对它所接受的值类型没有任何限制。如果两个输入值在 JavaScript 中使用 <code>===</code>&nbsp;运算符比较时相等,则它们被视为相同。</p>
2023-04-23 22:41:08 +08:00
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>
getInputs = () =&gt; [[2,2],[2,2],[1,2]]
fn = function (a, b) { return a + b; }
<b>输出:</b>[{"val":4,"calls":1},{"val":4,"calls":1},{"val":3,"calls":2}]
<strong>解释:</strong>
const inputs = getInputs();
const memoized = memoize(fn);
for (const arr of inputs) {
memoized(...arr);
}
对于参数为 (2, 2) 的输入: 2 + 2 = 4需要调用 fn() 。
2023-12-09 18:42:21 +08:00
对于参数为 (2, 2) 的输入: 2 + 2 = 4这些输入之前已经出现过因此不需要再次调用 fn()。
对于参数为 (1, 2) 的输入: 1 + 2 = 3需要再次调用 fn(),总共调用了 2 次。
2023-04-23 22:41:08 +08:00
</pre>
<p><strong>示例 2</strong></p>
<pre>
<b>输入:</b>
getInputs = () =&gt; [[{},{}],[{},{}],[{},{}]]
fn = function (a, b) { return a + b; }
<b>输出:</b>[{"val":{},"calls":1},{"val":{},"calls":2},{"val":{},"calls":3}]
<strong>解释:</strong>
2023-12-09 18:42:21 +08:00
将两个空对象合并总是会得到一个空对象。尽管看起来应该缓存命中并只调用一次 <code>fn()</code>,但是这些空对象彼此之间都不是 <code>===</code> 相等的。
2023-04-23 22:41:08 +08:00
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>
getInputs = () =&gt; { const o = {}; return [[o,o],[o,o],[o,o]]; }
fn = function (a, b) { return ({...a, ...b}); }
<b>输出:</b>[{"val":{},"calls":1},{"val":{},"calls":1},{"val":{},"calls":1}]
<strong>解释:</strong>
2023-12-09 18:42:21 +08:00
将两个空对象合并总是会得到一个空对象。因为传入的每个对象都是相同的,所以第二个和第三个函数调用都会命中缓存。
2023-04-23 22:41:08 +08:00
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= inputs.length &lt;= 10<sup>5</sup></code></li>
<li><code>0 &lt;= inputs.flat().length &lt;= 10<sup>5</sup></code></li>
<li><code>inputs[i][j] != NaN</code></li>
</ul>