Skip to content

Commit 0b9c345

Browse files
committed
Create 1845-seat-reservation-manager.cpp
1 parent b060e5c commit 0b9c345

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

cpp/1845-seat-reservation-manager.cpp

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
class SeatManager {
2+
private:
3+
priority_queue<int, vector<int>, greater<int>> minHeap;
4+
public:
5+
SeatManager(int n) {
6+
for (int i=1; i<=n; ++i)
7+
minHeap.push(i);
8+
}
9+
10+
int reserve() {
11+
int smallestSeat = minHeap.top();
12+
minHeap.pop();
13+
return smallestSeat;
14+
}
15+
16+
void unreserve(int seatNumber) {
17+
minHeap.push(seatNumber);
18+
}
19+
};
20+
21+
/**
22+
* Your SeatManager object will be instantiated and called as such:
23+
* SeatManager* obj = new SeatManager(n);
24+
* int param_1 = obj->reserve();
25+
* obj->unreserve(seatNumber);
26+
*/

0 commit comments

Comments
 (0)