622 設計迴圈佇列

2021-10-09 08:14:25 字數 1551 閱讀 2300

難度:中等

設計你的迴圈佇列實現。 迴圈佇列是一種線性資料結構,其操作表現基於 fifo(先進先出)原則並且隊尾被連線在隊首之後以形成乙個迴圈。它也被稱為「環形緩衝器」。

迴圈佇列的乙個好處是我們可以利用這個佇列之前用過的空間。在乙個普通佇列裡,一旦乙個佇列滿了,我們就不能插入下乙個元素,即使在佇列前面仍有空間。但是使用迴圈佇列,我們能使用這些空間去儲存新的值。

你的實現應該支援如下操作:

示例:

mycircularqueue circularqueue = new mycircularqueue(3); // 設定長度為 3

circularqueue.enqueue(1);  // 返回 true

circularqueue.enqueue(2);  // 返回 true

circularqueue.enqueue(3);  // 返回 true

circularqueue.enqueue(4);  // 返回 false,佇列已滿

circularqueue.rear();  // 返回 3

circularqueue.isfull();  // 返回 true

circularqueue.dequeue();  // 返回 true

circularqueue.enqueue(4);  // 返回 true

circularqueue.rear();  // 返回 4

分析:略

**:

class mycircularqueue 

/** insert an element into the circular queue. return true if the operation is successful. */

public boolean enqueue(int value)

/** delete an element from the circular queue. return true if the operation is successful. */

public boolean dequeue()

/** get the front item from the queue. */

public int front()

/** get the last item from the queue. */

public int rear()

/** checks whether the circular queue is empty or not. */

public boolean isempty()

/** checks whether the circular queue is full or not. */

public boolean isfull()

}

結果:

迴圈佇列 622 設計迴圈佇列

設計你的迴圈佇列實現。迴圈佇列是一種線性資料結構,其操作表現基於fifo 先進先出 原則並且隊尾被連線在隊首之後以形成乙個迴圈。它也被稱為環形緩衝器。迴圈佇列的乙個好處是我們可以利用這個佇列之前用過的空間。在乙個普通佇列裡,一旦乙個佇列滿了,我們就不能插入下乙個元素,即使在佇列前面仍有空間。但是使用...

622 設計迴圈佇列

設計你的迴圈佇列實現。迴圈佇列是一種線性資料結構,其操作表現基於 fifo 先進先出 原則並且隊尾被連線在隊首之後以形成乙個迴圈。它也被稱為 環形緩衝器 迴圈佇列的乙個好處是我們可以利用這個佇列之前用過的空間。在乙個普通佇列裡,一旦乙個佇列滿了,我們就不能插入下乙個元素,即使在佇列前面仍有空間。但是...

622 設計迴圈佇列

設計你的迴圈佇列實現。迴圈佇列是一種線性資料結構,其操作表現基於 fifo 先進先出 原則並且隊尾被連線在隊首之後以形成乙個迴圈。它也被稱為 環形緩衝器 迴圈佇列的乙個好處是我們可以利用這個佇列之前用過的空間。在乙個普通佇列裡,一旦乙個佇列滿了,我們就不能插入下乙個元素,即使在佇列前面仍有空間。但是...