import java.util.Arrays;
import java.util.PriorityQueue;

public class FirstQueue {
	private static int[] array;
	private static int size;

	public FirstQueue() {
		// 队列初始长度为32
		array = new int[32];
	}

	private void enQueue(int key) {
		// 队列长度超出范围,扩容
		if (size >= array.length) {
			resize();
		}
		array[size++] = key;
	}

	private int deQueue() throws Exception {
		if (size <= 0) {
			throw new Exception("这个队列是空的!");
		}
		// 获取堆顶元素
		int head = array[0];
		// 让最后一个元素移动到堆顶
		array[0] = array[--size];
		downAdjust();
		return head;
	}

	/**
	 * 上浮调整
	 * 
	 * @param array 待调整的堆
	 */
	private static void upAdjust(int[] array) {
		int childIndex = array.length - 1;
		int parentIndex = (childIndex - 1) / 2;
		// temp保存插入的叶子节点值,用于最后的赋值
		int temp = array[childIndex];
		while (childIndex > 0 && temp < array[parentIndex]) {
			// 无需真正交换,单向赋值即可
			array[childIndex] = array[parentIndex];
			childIndex = parentIndex;
			parentIndex = (parentIndex - 1) / 2;
		}
		// 最后将值给它
		array[childIndex] = temp;

	}

	/**
	 * 下沉调整
	 * 
	 * @param array       待调整的堆
	 * @param parentIndex 要下沉的父节点
	 * @param lenght      堆得有效大小
	 */
	private static void downAdjust() {
		// temp保存父节点值,用于最后赋值
		int parentIndex = 0;
		int temp = array[parentIndex];
		int childIndex = 1;
		// 左孩子
		while (childIndex < size) {
			// 如果有右孩子,且右孩子小于左孩子的值,则定位到右孩子
			if (childIndex + 1 < size && array[childIndex] + 1 > array[childIndex]) {
				childIndex++;
			}
			// 如果父节点则任何一个孩子的值,则直接跳出
			if (temp >= array[childIndex]) {
				break; 
			}
			// 无需真正交换,单向赋值即可
			array[parentIndex] = array[childIndex];
			parentIndex = childIndex;
			childIndex = 2 * childIndex + 1;
		}
			array[parentIndex] = temp;
	}

	private void resize() {
		// 队列容量翻倍
		int newSize = this.size = 2;
		this.array = Arrays.copyOf(this.array, newSize);
	}

	// 测试
	public static void main(String[] args) throws Exception {
		FirstQueue firstQueue = new FirstQueue();
		firstQueue.enQueue(3);
		firstQueue.enQueue(5);
		firstQueue.enQueue(10);
		firstQueue.enQueue(2);
		firstQueue.enQueue(7);
		System.out.println("出队元素: "+firstQueue.deQueue());
		System.out.println("出队元素: "+firstQueue.deQueue());
	}

}