structMyCircularQueue { v : Vec<i32>, head : usize, tail : usize, count : usize }
/** * `&self` means the method takes an immutable reference. * If you need a mutable reference, change it to `&mut self` instead. */ impl MyCircularQueue {
/** Initialize your data structure here. Set the size of the queue to be k. */ fnnew(k: i32) -> Self { letmut vec = Vec::with_capacity(k.clone() asusize); vec.resize(k asusize, 0); MyCircularQueue { v : vec, head : 0, tail : 0, count : 0 } }
/** Insert an element into the circular queue. Return true if the operation is successful. */ fnen_queue(&mutself, value: i32) -> bool { ifself.is_full() { returnfalse; }