Last updated
Was this helpful?
Last updated
Was this helpful?
T: O(nk), sliding windows
in each k size window,
find max value(when right - left + 1 == k), do n times
or left don't move, right move, also T: O(nk)
ä¹å¾åä¾åÆ«ēē
use deque to store index,
peek() = peekFirst()
poll() = pollFirst()
offer() = offerLast()
Q. how many result?
A. (n-k+1)
0. use deque to save index, so...
check range: peek() < (i - k +1)
i-k+1å°±ęÆē¶ę kå sliding windows, č¶ åŗå°±poll(pollFront
k = 3
i 0 1 2 3, i = 3, 3-3+1 = 1, so å°ę¼ 1 ē index é½äøę
new coming value is bigger than peekLast() (last roud latest), discard last,
(å ēŗę°ēé½å åØå°¾ē«Æ, å¦ęę°ä¾å¾å¼ęÆlast大, discard last in dq
offer new coming value index (offer: offerLast()
add result
O(n)
[1, 3, - 1], 3, .....
idx = 2,
2 -3 +1 = 0, éęåęåŗē¾ē¬¬äøēµēę”
T:O(n), while loop < n, so can ignore
S: O(n), since O(nāk+1) is used for an output array and O(k) for a deque.
if 3 poll first, it's wrong, this max can remain for next to use,
unless , this time we poll the number is the max one, abandon it
and offer number, not index