Javaの研究ノートDay16:スタックとキュー

スタック(最後のアウト)

スタック方法:

  • Eプッシュ(E項目)プッシュ
  • Eポップ()ポップ
  • EのPEEKは()先頭の要素を見ます
  • かどうかは、スタックが空であると判断し)(空ブール

スタックテーブルを実現するために

public class MyStack {
	private int[] array = new int[100];
	array[size++] = v;
	public void push(int v) {
		array[size++] = v;
	}
	public int pop() {
		return array[--size];
	}
	public int peek() {
		return array[size - 1];
	}
	public boolean isEmpty() {
		return size == 0;
	}
	public int size() {
		return size;
	}
}

キュー(ラストアウト)

キュー方法

エラー処理 例外を投げます 特別な値を返します。
キューに 追加(E) プラン(E)
キュー 削除する() 世論調査()
チームの最初の要素 素子() ピーク()

循環キュー

循環キューを実現

class MyCircularQueue {
    int[] a;
    int front;
    int rear;
    int size;
    /** Initialize your data structure here. Set the size of the queue to be k. */
    public MyCircularQueue(int k) {
        a=new int[k+1];
       front=rear=0;
       size=k+1;
    }
    
    /** Insert an element into the circular queue. Return true if the operation is successful. */
    public boolean enQueue(int value) {
        if(isFull()){
            return false;
        }
        a[rear]=value;
        rear=(rear+1)%size;
        return true;
    }
    
    /** Delete an element from the circular queue. Return true if the operation is successful. */
    public boolean deQueue() {
        if(isEmpty()){
            return false;
        }
        front=(front+1)%size;
        return true;
    }
    
    /** Get the front item from the queue. */
    public int Front() {
        if(isEmpty()){
            return -1;
        }
       return a[front]; 
    }
    
    /** Get the last item from the queue. */
    public int Rear() {
        if(isEmpty()){
            return -1;
        }
        return a[(rear-1+size)%size];
    }
    
    /** Checks whether the circular queue is empty or not. */
    public boolean isEmpty() {
        if(front==rear){
            return true;
        }
        return false;
    }
    
    /** Checks whether the circular queue is full or not. */
    public boolean isFull() {
        if((rear+1)%size==front){
            return true;
        }
        return false;
    }
}


公開された67元の記事 ウォン称賛12 ビュー1476

おすすめ

転載: blog.csdn.net/qq_42174669/article/details/103981077