数据结构-栈和队列

栈和队列是两种重要的线性数据结构,都是在一个特定的范围的存储单元中的存储数据。与线性表相比,它们的插入和删除操作收到更多的约束和限定,又被称为限定性的线性表结构。栈是先进后出FILO,队列是先进先出FIFO,但是有的数据结构按照一定的条件排队数据的队列,这时候的队列属于特殊队列,不一定按照上面的原则。

实现栈:采用数组和链表两种方法来实现栈

数组方法:


链表方法:

package com.cl.content01;
/*
 * 使用链表来实现栈
 */
public class Stack<E> {
   Node<E> top=null;
   
   public boolean isEmpty(){
 return top==null;
   }
   /*
    * 出栈
    */
   public void push(E data){
  Node<E> nextNode=new Node<E>(data);
  nextNode.next=top;
  top=nextNode;
   }
   /*
    * 出栈
    */
   public E pop(){
  if(this.isEmpty()){
  return null;
  }
  E data =top.datas;
  top=top.next;
  return data;
   }
}
/*
 * 链表
 */
class Node<E>{
Node<E> next=null;
E datas;
public Node(E datas){
this.datas=datas;
}
}

实现队列:同栈一样,

数组方法


链表方法:

package com.cl.content01;


public class MyQueue<E> {
    private Node<E> head=null;
    private Node<E> tail=null;
    public boolean isEmpty(){
    return head==null;
    }
    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(){
    int n=0;
    Node<E> t=head;
    while(t!=null){
    n++;
    t=t.next;
    }
    return n;
    }
    public static void main(String[] args) {
MyQueue<Integer> q=new MyQueue<Integer>();
q.put(1);q.put(3);q.put(2);
System.out.println(q.pop());
System.out.println(q.size());
System.out.println(q.pop());
}
}
class Node<E>{
Node<E> next=null;
E data;
public Node(E data){
this.data=data;
}
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值