39 lines
1.4 KiB
Markdown
39 lines
1.4 KiB
Markdown
|
<p>给定一个整数数组 <code>A</code>,返回 <code>A</code> 中最长等差子序列的<strong>长度</strong>。</p>
|
|||
|
|
|||
|
<p>回想一下,<code>A</code> 的子序列是列表 <code>A[i_1], A[i_2], ..., A[i_k]</code> 其中 <code>0 <= i_1 < i_2 < ... < i_k <= A.length - 1</code>。并且如果 <code>B[i+1] - B[i]</code>( <code>0 <= i < B.length - 1</code>) 的值都相同,那么序列 <code>B</code> 是等差的。</p>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>示例 1:</strong></p>
|
|||
|
|
|||
|
<pre><strong>输入:</strong>[3,6,9,12]
|
|||
|
<strong>输出:</strong>4
|
|||
|
<strong>解释: </strong>
|
|||
|
整个数组是公差为 3 的等差数列。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 2:</strong></p>
|
|||
|
|
|||
|
<pre><strong>输入:</strong>[9,4,7,2,10]
|
|||
|
<strong>输出:</strong>3
|
|||
|
<strong>解释:</strong>
|
|||
|
最长的等差子序列是 [4,7,10]。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 3:</strong></p>
|
|||
|
|
|||
|
<pre><strong>输入:</strong>[20,1,15,3,10,5,8]
|
|||
|
<strong>输出:</strong>4
|
|||
|
<strong>解释:</strong>
|
|||
|
最长的等差子序列是 [20,15,10,5]。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>提示:</strong></p>
|
|||
|
|
|||
|
<ol>
|
|||
|
<li><code>2 <= A.length <= 2000</code></li>
|
|||
|
<li><code>0 <= A[i] <= 10000</code></li>
|
|||
|
</ol>
|
|||
|
<div><div>Related Topics</div><div><li>数组</li><li>哈希表</li><li>二分查找</li><li>动态规划</li></div></div>\n<div><li>👍 144</li><li>👎 0</li></div>
|