優先級列表

/**
 * 優先級列表
 * */
public class PriorityQ {
	
	private int maxSize;
	private long[] queArray;
	private int nItems;

	public PriorityQ(int s){
		maxSize=s;
		queArray=new long[maxSize];
		nItems=0;
		
	}
	
	public void insert(long item){
		int j;
		if(nItems==0){
			queArray[nItems++]=item;
		}else{
			for(j=nItems-1;j>=0;j--){
				if(item>queArray[j]){
					queArray[j+1]=queArray[j];
				}else{
					break;
				}
			}
			queArray[j+1]=item;
			nItems++;
		}
	}
	public long remove(){
		return queArray[--nItems];
	}
	
	public long peekMin(){
		return queArray[nItems-1];
	}
	
	public boolean isEmpty(){
		return (nItems==0);
	}
	
	public boolean isFull(){
		return (nItems==maxSize);
	}
}


/**
 * 優先級列表實現類
 * */
public class PriorityQApp {

	public static void main(String[] args) {
		PriorityQ thePQ=new PriorityQ(8);
		thePQ.insert(90);
		thePQ.insert(20);
		thePQ.insert(10);
		thePQ.insert(30);
		thePQ.insert(50);
		thePQ.insert(70);
		thePQ.insert(40);
		thePQ.insert(80);
		
		while(!thePQ.isEmpty()){
			long item=thePQ.remove();
			System.out.print(item+" ");
		}
		System.out.println();
	}
	
} 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章