Medium
Design a queue that supports push
and pop
operations in the front, middle, and back.
Implement the FrontMiddleBack
class:
FrontMiddleBack()
Initializes the queue.void pushFront(int val)
Adds val
to the front of the queue.void pushMiddle(int val)
Adds val
to the middle of the queue.void pushBack(int val)
Adds val
to the back of the queue.int popFront()
Removes the front element of the queue and returns it. If the queue is empty, return -1
.int popMiddle()
Removes the middle element of the queue and returns it. If the queue is empty, return -1
.int popBack()
Removes the back element of the queue and returns it. If the queue is empty, return -1
.Notice that when there are two middle position choices, the operation is performed on the frontmost middle position choice. For example:
6
into the middle of [1, 2, 3, 4, 5]
results in [1, 2, 6, 3, 4, 5]
.[1, 2, 3, 4, 5, 6]
returns 3
and results in [1, 2, 4, 5, 6]
.Example 1:
Input: [“FrontMiddleBackQueue”, “pushFront”, “pushBack”, “pushMiddle”, “pushMiddle”, “popFront”, “popMiddle”, “popMiddle”, “popBack”, “popFront”]
[[], [1], [2], [3], [4], [], [], [], [], []]
Output: [null, null, null, null, null, 1, 3, 4, 2, -1]
Explanation:
FrontMiddleBackQueue q = new FrontMiddleBackQueue(); q.pushFront(1); // [1]
q.pushBack(2); // [1, 2]
q.pushMiddle(3); // [1, 3, 2]
q.pushMiddle(4); // [1, 4, 3, 2]
q.popFront(); // return 1 -> [4, 3, 2]
q.popMiddle(); // return 3 -> [4, 2]
q.popMiddle(); // return 4 -> [2]
q.popBack(); // return 2 -> []
q.popFront(); // return -1 -> [] (The queue is empty)
Constraints:
1 <= val <= 109
1000
calls will be made to pushFront
, pushMiddle
, pushBack
, popFront
, popMiddle
, and popBack
.class FrontMiddleBackQueue {
private val queue = IntArray(1000)
private var cur = -1
fun pushFront(`val`: Int) {
cur++
for (i in cur downTo 1) {
queue[i] = queue[i - 1]
}
queue[0] = `val`
}
fun pushMiddle(`val`: Int) {
if (cur < 0) {
pushFront(`val`)
return
}
cur++
val mid = cur / 2
for (i in cur downTo mid + 1) {
queue[i] = queue[i - 1]
}
queue[mid] = `val`
}
fun pushBack(`val`: Int) {
if (cur < 0) {
pushFront(`val`)
return
}
cur++
queue[cur] = `val`
}
fun popFront(): Int {
if (cur < 0) {
return -1
}
val result = queue[0]
for (i in 0 until cur) {
queue[i] = queue[i + 1]
}
cur--
return result
}
fun popMiddle(): Int {
if (cur < 0) {
return -1
}
val mid = cur / 2
val result = queue[mid]
for (i in mid until cur) {
queue[i] = queue[i + 1]
}
cur--
return result
}
fun popBack(): Int {
if (cur < 0) {
return -1
}
val result = queue[cur]
cur--
return result
}
}
/*
* Your FrontMiddleBackQueue object will be instantiated and called as such:
* var obj = FrontMiddleBackQueue()
* obj.pushFront(`val`)
* obj.pushMiddle(`val`)
* obj.pushBack(`val`)
* var param_4 = obj.popFront()
* var param_5 = obj.popMiddle()
* var param_6 = obj.popBack()
*/