Java学习手册:(数据结构与算法-栈与队列)如何实现队列?

算法思想:

方法一:采用链表的方式实现对列

方法二:采用数组的方式实现队列

方法一代码如下:

package com.haobi;
/*
 * 链表方式实现队列
 */
class Node<E>{
	Node<E> next = null;
	E data;
	public Node(E data) {
		this.data = data;
	}
}
public class MyQueue<E> {
	private Node<E> head = null;
	private Node<E> tail = null;
	public boolean isEmpty() {
		return head == tail;
	}
	public void put(E data) {
		Node<E> newNode = new Node<E>(data);
		if(head == null && tail == null) {//队列为空
			head = tail = newNode;
		}else {//队列不为空,在队尾插入元素
			tail.next = newNode;
			tail = newNode;
		}
	}
	public E pop() {
		if(this.isEmpty())
			return null;
		E data = head.data;
		head = head.next;
		return data;
	}
	public int size() {
		Node<E> tmp = head;
		int n = 0;
		while(tmp != null) {
			n++;
			tmp = tmp.next;
		}
		return n;
	}
	public static void main(String[] args) {
		MyQueue<Integer> q = new MyQueue<Integer>();
		q.put(2);
		q.put(1);
		q.put(3);
		System.out.println("队列长度:"+q.size());
		System.out.println("队首元素:"+q.pop());
	}
}

程序输出结果如下:

队列长度:3
队首元素:2

 

方法二代码如下:

package com.haobi;
/*
 * 数组实现队列(为了实现多线程安全,增加了对队列操作的同步)
 */
import java.util.LinkedList;

public class MyQueue1<E> {
	private LinkedList<E> list = new LinkedList<E>();
	private int size = 0;
	public synchronized void put(E e) {
		list.addLast(e);
		size++;
	}
	public synchronized E pop() {
		size--;
		return list.removeFirst();
	}
	public synchronized boolean empty() {
		return size == 0;
	}
	
	public synchronized int size() {
		return size;
	}
	public static void main(String[] args) {
		MyQueue1<Integer> q = new MyQueue1<Integer>();
		q.put(3);
		q.put(1);
		q.put(2);
		System.out.println("队列长度:"+q.size());
		System.out.println("队首元素:"+q.pop());
	}
}

程序输出结果如下:

队列长度:3
队首元素:3
 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值