1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/股票价格跨度 [online-stock-span].html

47 lines
1.6 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p>设计一个算法收集某些股票的每日报价,并返回该股票当日价格的 <strong>跨度</strong></p>
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<p>当日股票价格的 <strong>跨度</strong> 被定义为股票价格小于或等于今天价格的最大连续日数(从今天开始往回数,包括今天)。</p>
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<ul>
<li>
<p>例如,如果未来 7 天股票的价格是 <code>[100,80,60,70,60,75,85]</code>,那么股票跨度将是 <code>[1,1,1,2,1,4,6]</code></p>
</li>
</ul>
<p>实现 <code>StockSpanner</code> 类:</p>
<ul>
<li><code>StockSpanner()</code> 初始化类对象。</li>
<li><code>int next(int price)</code> 给出今天的股价 <code>price</code> ,返回该股票当日价格的 <strong>跨度</strong></li>
</ul>
2022-03-27 20:46:41 +08:00
<p>&nbsp;</p>
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例:</strong></p>
<pre>
<strong>输入</strong>
["StockSpanner", "next", "next", "next", "next", "next", "next", "next"]
[[], [100], [80], [60], [70], [60], [75], [85]]
<strong>输出</strong>
[null, 1, 1, 1, 2, 1, 4, 6]
2022-03-27 20:46:41 +08:00
<strong>解释:</strong>
2023-12-09 18:42:21 +08:00
StockSpanner stockSpanner = new StockSpanner();
stockSpanner.next(100); // 返回 1
stockSpanner.next(80); // 返回 1
stockSpanner.next(60); // 返回 1
stockSpanner.next(70); // 返回 2
stockSpanner.next(60); // 返回 1
stockSpanner.next(75); // 返回 4 ,因为截至今天的最后 4 个股价 (包括今天的股价 75) 都小于或等于今天的股价。
stockSpanner.next(85); // 返回 6
2022-03-27 20:46:41 +08:00
</pre>
2023-12-09 18:42:21 +08:00
&nbsp;
2022-03-27 20:46:41 +08:00
<p><strong>提示:</strong></p>
2023-12-09 18:42:21 +08:00
<ul>
<li><code>1 &lt;= price &lt;= 10<sup>5</sup></code></li>
<li>最多调用 <code>next</code> 方法 <code>10<sup>4</sup></code></li>
</ul>