日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

十四 链表队列

發(fā)布時(shí)間:2024/9/5 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 十四 链表队列 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

鏈表實(shí)現(xiàn)隊(duì)列:

?

鏈表隊(duì)列的實(shí)現(xiàn):

package com.lt.datastructure.Queue;public class LinkedListQueue<E> implements Queue<E>{ public class Node{public E e;public Node next;public Node(E e,Node next){this.e = e;this.next = next;}public Node(E e){this(e,null);}public Node(){this(null,null);}@Overridepublic String toString() {return e.toString();}}private Node head,tail;private int size;public LinkedListQueue() {head = null;tail = null;size = 0;}@Overridepublic int getSize() {return size;}@Overridepublic boolean isEmpty() {return size==0;}/** 入隊(duì) * 如果tail尾結(jié)點(diǎn)是空,新建第一個(gè)結(jié)點(diǎn),head和tail指向此結(jié)點(diǎn)* 如果tail不為空,在tail的下一個(gè)位置新建結(jié)點(diǎn),當(dāng)作尾結(jié)點(diǎn)*/@Overridepublic void enqueue(E e) {if(tail==null){tail = new Node(e);head = tail;}else{tail.next = new Node(e);tail = tail.next;}size ++;}@Override/** 出隊(duì)* 首先判斷能不能出隊(duì),判斷是否為空* 不為空,則刪除頭結(jié)點(diǎn)*/public E dequeue() {if(isEmpty()){throw new IllegalArgumentException("Cannot dequeue from a Empty queue.");}//retNode指向headNode retNode = head;//head后移,為刪除做準(zhǔn)備head = head.next;//刪除retNoderetNode.next = null;//如果只有一個(gè)結(jié)點(diǎn),刪除之后讓tail為空if(head == null) {tail =null;}size --;return retNode.e;}@Overridepublic E getFront(E e) {if(isEmpty()){throw new IllegalArgumentException("Queue is empty.");}return head.e;}@Overridepublic String toString() {StringBuilder res = new StringBuilder();res.append("Queue:front ");Node cur = head;while(cur != null){res.append(cur +"->");cur = cur.next;}res.append("null");return res.toString();}public static void main(String[] args) {LinkedListQueue<Integer> queue = new LinkedListQueue<>();for(int i =0; i<10; i++){queue.enqueue(i);System.out.println(queue);if(i%3==2){queue.dequeue();System.out.println(queue); }}}}

?

測(cè)試:

?

復(fù)雜度測(cè)試:

?

package com.lt.datastructure.Queue;import java.util.Random;public class Main {/** 測(cè)試ArrayQueue和LoopQueue*/private static double testQueue(Queue<Integer> q , int opCount){long startTime = System.nanoTime();//..Random random = new Random();for(int i =0; i<opCount;i++){q.enqueue(random.nextInt(Integer.MAX_VALUE));}for(int i=0; i<opCount; i++){q.dequeue();}long endTime = System.nanoTime();return (endTime-startTime)/1000000000.0;} public static void main(String[] args){int opCount = 100000;ArrayQueue<Integer> arrayQueue = new ArrayQueue<>();System.out.println("ArrayQueue:"+testQueue(arrayQueue,opCount));LoopQueue<Integer> loopQueue = new LoopQueue<>();System.out.println("LoopQueue:"+testQueue(loopQueue, opCount));LinkedListQueue<Integer> linkedListQueue = new LinkedListQueue<>();System.out.println("LinkedListQueue:"+testQueue(linkedListQueue, opCount));} }

三種隊(duì)列分別所需時(shí)間:

?

轉(zhuǎn)載于:https://www.cnblogs.com/ltfxy/p/9987739.html

總結(jié)

以上是生活随笔為你收集整理的十四 链表队列的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。