Home > Java > javaTutorial > body text

Java Example - Queue Usage

黄舟
Release: 2017-02-04 10:01:16
Original
1428 people have browsed it

The queue is a special linear table that only allows deletion operations at the front end of the table and insertion operations at the back end of the table.

The LinkedList class implements the Queue interface, so we can use LinkedList as a Queue.

The following example demonstrates the usage of queue (Queue):

/*
 author by w3cschool.cc
 Main.java
 */import java.util.LinkedList;import java.util.Queue;public class Main {
    public static void main(String[] args) {
        //add()和remove()方法在失败的时候会抛出异常(不推荐)
        Queue<String> queue = new LinkedList<String>();
        //添加元素
        queue.offer("a");
        queue.offer("b");
        queue.offer("c");
        queue.offer("d");
        queue.offer("e");
        for(String q : queue){
            System.out.println(q);
        }
        System.out.println("===");
        System.out.println("poll="+queue.poll()); //返回第一个元素,并在队列中删除
        for(String q : queue){
            System.out.println(q);
        }
        System.out.println("===");
        System.out.println("element="+queue.element()); //返回第一个元素 
        for(String q : queue){
            System.out.println(q);
        }
        System.out.println("===");
        System.out.println("peek="+queue.peek()); //返回第一个元素 
        for(String q : queue){
            System.out.println(q);
        }
    }}
Copy after login

The output result of running the above code is:

a
b
c
d
e===poll=a
b
c
d
e===element=b
b
c
d
e===peek=b
b
c
d
e
Copy after login

The above is the Java example - the content of queue (Queue) usage , for more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!