-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOnline Stock Span.swift
42 lines (30 loc) · 1.59 KB
/
Online Stock Span.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// https://leetcode.com/problems/online-stock-span/?envType=study-plan-v2&envId=leetcode-75
/*
Design an algorithm that collects daily price quotes for some stock and returns the span of that stock's price for the current day.
The span of the stock's price in one day is the maximum number of consecutive days (starting from that day and going backward) for which the stock price was less than or equal to the price of that day.
For example, if the prices of the stock in the last four days is [7,2,1,2] and the price of the stock today is 2, then the span of today is 4 because starting from today, the price of the stock was less than or equal 2 for 4 consecutive days.
Also, if the prices of the stock in the last four days is [7,34,1,2] and the price of the stock today is 8, then the span of today is 3 because starting from today, the price of the stock was less than or equal 8 for 3 consecutive days.
Implement the StockSpanner class:
StockSpanner() Initializes the object of the class.
int next(int price) Returns the span of the stock's price given that today's price is price.
*/
class StockSpanner {
typealias PriceSpan = (price: Int, span: Int)
var stack: [PriceSpan]
init() {
stack = []
}
func next(_ price: Int) -> Int {
var span = 1
while !stack.isEmpty && stack.last!.price <= price {
span += stack.removeLast().span
}
stack.append((price: price, span: span))
return span
}
}
/**
* Your StockSpanner object will be instantiated and called as such:
* let obj = StockSpanner()
* let ret_1: Int = obj.next(price)
*/