【Java】用单链表来实现队列

前言

学习了单链表队列,我们不妨用单链表来实现一下队列

单链表不做过多赘述,这里重新复习一下队列
1.先进先出
2.队头删除,队尾增加

算法分析

在这里插入图片描述

代码分析

1.实现任意数据类型的结点类

public static class Node<V>{
        public V value;
        public Node<V> next;
        public Node(V v){
            value=v;
            next=null;
        }
    }

2.实现队列类

public static class MyQueue<V>{
        private Node<V> head;
        private Node<V> tail;
        private int size;
        public MyQueue(){
            head=null;
            tail=null;
            size=0;
        }
        public boolean isEmpty(){
            return size==0;
        }
        public int size(){
            return size;
        }
        public void offer(V value){
            Node<V> cur=new Node<V>(value);
            if(tail==null){
                head=cur;
                tail=cur;
            }else{
                tail.next=cur;
                tail=cur;
            }
            size++;
        }

        public V Pop(){
            V ans=null;
            if(head!=null){
                ans=head.value;
                head=head.next;
                size--;
            }
            if(head==null){
                tail=null;
            }
            return ans;
        }
    }

3.测试

public static void main(String[] args) {
        MyQueue<Integer> myQueue=new MyQueue<Integer>();
        myQueue.offer(1);
        myQueue.offer(2);
        myQueue.offer(3);
        myQueue.offer(4);
        int ans1=myQueue.Pop();
        int ans2=myQueue.Pop();
        int ans3=myQueue.Pop();
        int ans4=myQueue.Pop();
        System.out.println(ans1);
        System.out.println(ans2);
        System.out.println(ans3);
        System.out.println(ans4);
    }

4.完整代码

package List;

public class 用单链表实现队列 {
    public static class Node<V>{
        public V value;
        public Node<V> next;
        public Node(V v){
            value=v;
            next=null;
        }
    }
    public static class MyQueue<V>{
        private Node<V> head;
        private Node<V> tail;
        private int size;
        public MyQueue(){
            head=null;
            tail=null;
            size=0;
        }
        public boolean isEmpty(){
            return size==0;
        }
        public int size(){
            return size;
        }
        public void offer(V value){
            Node<V> cur=new Node<V>(value);
            if(tail==null){
                head=cur;
                tail=cur;
            }else{
                tail.next=cur;
                tail=cur;
            }
            size++;
        }

        public V Pop(){
            V ans=null;
            if(head!=null){
                ans=head.value;
                head=head.next;
                size--;
            }
            if(head==null){
                tail=null;
            }
            return ans;
        }
    }
    public static void main(String[] args) {
        MyQueue<Integer> myQueue=new MyQueue<Integer>();
        myQueue.offer(1);
        myQueue.offer(2);
        myQueue.offer(3);
        myQueue.offer(4);
        int ans1=myQueue.Pop();
        int ans2=myQueue.Pop();
        int ans3=myQueue.Pop();
        int ans4=myQueue.Pop();
        System.out.println(ans1);
        System.out.println(ans2);
        System.out.println(ans3);
        System.out.println(ans4);
    }
}

看懂了这篇文章,我相信你已经可以独立的完成单链表实现队列了,即是复习了队列,又加强了单链表快去练练吧!!!
在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值