【数据结构】队列-数组的实现

前端之家收集整理的这篇文章主要介绍了【数据结构】队列-数组的实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先定义队列的基本结构,队列和栈不同之处在于队列需要两个指针,一个指向头,一个指向尾

	String[] queue;
	int front = 0;
	int rear = 0;

构造方法
	public QueueOfStrings(int capacity) {
		queue = new String[capacity];
	}

进队列
	public void enqueue(String str) {
		queue[rear++] = str;
		if (rear == queue.length)
			resize(2 * queue.length);
	}


出队列

	public String dequeue() {
		return queue[front++];
	}

判空

	public boolean isEmpty() {
		return front == rear;
	}

判满

	public boolean isFull() {
		return rear == queue.length;
	}

尺寸

	public int size() {
		return rear - front;
	}

最后附上resize
	public void resize(int capacity) {
		String[] copy = new String[capacity];
		for (int i = 0; i < rear; i++)
			copy[i] = queue[i];
		queue = copy;
	}
原文链接:https://www.f2er.com/datastructure/382859.html

猜你在找的数据结构相关文章