-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeetcode Problem 295 Find Median from Data Stream.txt
76 lines (51 loc) · 2.1 KB
/
Leetcode Problem 295 Find Median from Data Stream.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
295. Find Median from Data Stream
Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.
For example,
[2,3,4], the median is 3
[2,3], the median is (2 + 3) / 2 = 2.5
Design a data structure that supports the following two operations:
void addNum(int num) - Add a integer number from the data stream to the data structure.
double findMedian() - Return the median of all elements so far.
Example:
addNum(1)
addNum(2)
findMedian() -> 1.5
addNum(3)
findMedian() -> 2
Follow up:
If all integer numbers from the stream are between 0 and 100, how would you optimize it?
If 99% of all integer numbers from the stream are between 0 and 100, how would you optimize it?
Hint: Use two heap. Leftside -> maxHeap (insert negative number)
RightSide -> minHeap
Try to maintain one extra element in the right side.
from heapq import *
class MedianFinder:
def __init__(self):
"""
initialize your data structure here.
"""
self.leftPortion = []
self.rightPortion = []
def addNum(self, num: int) -> None:
if(len(self.leftPortion) == len(self.rightPortion)):
heappush(self.leftPortion, -num)
largestNumber = -heappop(self.leftPortion)
heappush(self.rightPortion, largestNumber)
else:
heappush(self.rightPortion, num)
smallestNumber = -heappop(self.rightPortion)
heappush(self.leftPortion, smallestNumber)
#self.debugPrint()
def rebalanceHeaps(self):
pass
def findMedian(self) -> float:
if(len(self.leftPortion) == len(self.rightPortion)):
return float(self.rightPortion[0] + (-self.leftPortion[0]))/2
else:
return self.rightPortion[0]
def debugPrint(self):
print("leftPortion: ",self.leftPortion," rightPortion:",self.rightPortion)
# Your MedianFinder object will be instantiated and called as such:
# obj = MedianFinder()
# obj.addNum(num)
# param_2 = obj.findMedian()