mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
80 lines
2.7 KiB
HTML
80 lines
2.7 KiB
HTML
<p>现给定两个数组 <code>arr1</code> 和 <code>arr2</code> ,返回一个新的数组 <code>joinedArray</code> 。两个输入数组中的每个对象都包含一个 <code>id</code> 字段。<code>joinedArray</code> 是一个通过 <code>id</code> 将 <code>arr1</code> 和 <code>arr2</code> 连接而成的数组。<code>joinedArray</code> 的长度应为唯一值 <code>id</code> 的长度。返回的数组应按 <code>id</code> <strong>升序</strong> 排序。</p>
|
||
|
||
<p>如果一个 <code>id</code> 存在于一个数组中但不存在于另一个数组中,则该对象应包含在结果数组中且不进行修改。</p>
|
||
|
||
<p>如果两个对象共享一个 <code>id</code> ,则它们的属性应进行合并:</p>
|
||
|
||
<ul>
|
||
<li>如果一个键只存在于一个对象中,则该键值对应该包含在对象中。</li>
|
||
<li>如果一个键在两个对象中都包含,则 <code>arr2</code> 中的值应覆盖 <code>arr1</code> 中的值。</li>
|
||
</ul>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong class="example">示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>
|
||
arr1 = [
|
||
{"id": 1, "x": 1},
|
||
{"id": 2, "x": 9}
|
||
],
|
||
arr2 = [
|
||
{"id": 3, "x": 5}
|
||
]
|
||
<b>输出:</b>
|
||
[
|
||
{"id": 1, "x": 1},
|
||
{"id": 2, "x": 9},
|
||
{"id": 3, "x": 5}
|
||
]
|
||
<b>解释:</b>没有共同的 id,因此将 arr1 与 arr2 简单地连接起来。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>
|
||
arr1 = [
|
||
{"id": 1, "x": 2, "y": 3},
|
||
{"id": 2, "x": 3, "y": 6}
|
||
],
|
||
arr2 = [
|
||
{"id": 2, "x": 10, "y": 20},
|
||
{"id": 3, "x": 0, "y": 0}
|
||
]
|
||
<b>输出:</b>
|
||
[
|
||
{"id": 1, "x": 2, "y": 3},
|
||
{"id": 2, "x": 10, "y": 20},
|
||
{"id": 3, "x": 0, "y": 0}
|
||
]
|
||
<b>解释:</b>id 为 1 和 id 为 3 的对象在结果数组中保持不变。id 为 2 的两个对象合并在一起。arr2 中的键覆盖 arr1 中的值。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>
|
||
arr1 = [
|
||
{"id": 1, "b": {"b": 94},"v": [4, 3], "y": 48}
|
||
]
|
||
arr2 = [
|
||
{"id": 1, "b": {"c": 84}, "v": [1, 3]}
|
||
]
|
||
<strong>输出:</strong> [
|
||
{"id": 1, "b": {"c": 84}, "v": [1, 3], "y": 48}
|
||
]
|
||
<b>解释:</b>具有 id 为 1 的对象合并在一起。对于键 "b" 和 "v" ,使用 arr2 中的值。由于键 "y" 只存在于 arr1 中,因此取 arr1 的值。</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>arr1 和 arr2 都是有效的 JSON 数组</code></li>
|
||
<li><code>在 arr1 和 arr2 中都有唯一的键值 id</code></li>
|
||
<li><code>2 <= JSON.stringify(arr1).length <= 10<sup>6</sup></code></li>
|
||
<li><code>2 <= JSON.stringify(arr2).length <= 10<sup>6</sup></code></li>
|
||
</ul>
|