1 Star 0 Fork 44

ssp/lec03-stack-queue

forked from SE-201/lec03-stack-queue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Stack.java 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
ssp 提交于 2021-01-02 19:51 . 作业
public class LinkedListQueue<E>implements Queue<E>{
private class Node{
public E e;
public Node next;
public Node(E e,Node next){
this.e=e;
this.next=next;
}
public Node(){
this(null,null);
}
public Node(E e){
this(e,null);
}
private Node head;
private Node tail;
private int size;
public LinkedListQueue(){
head=null;
tail=null;
size=0;
}
public void enqueue(E e){
if(tail == null){
tail=new Node(e)'
head=tail;
}else{
tail.next=new Node(e);
tail=tail.next;
}
size++;
}
public E dequeue(){
if(idEmpty()){
throw new IllegalArgumentException("Cannot dequeue from anempty queue");
}
Node returnNode=head;
head=head.next;
returnNode.next=null;
if(head == null){
tail=null;
}
size--;
return returnNode.e;
}
public E getFront(){
if(isEmpty()){
throw new IllegalArgumentException("Cannot dequeue from anempty queue");
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssp807/lec03-stack-queue.git
git@gitee.com:ssp807/lec03-stack-queue.git
ssp807
lec03-stack-queue
lec03-stack-queue
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385