码迷,mamicode.com
首页 > 其他好文 > 详细

队列与栈

时间:2016-04-29 09:17:18      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 
 

队列(先进先出)

顺序表存储

 
front:出队指针
rear:入队指针
 
从下往上走:
技术分享  技术分享   (可以出现队空状态)         
       技术分享    技术分享(不可以出现队满状态,即数组至少有一个为空)
类成员
    private T[]queue;

    privatestaticint size =20;         //队列容量

    privateint front, rear;        //队首、队尾下标
初始化
    publicArrayQueue(){

        queue=(T[])newObject[size];

        front =0;

        rear =0;

    }

 

入队
     publicvoid add(T t) throws Exception

    {

        if((rear +1)% size == front)

            thrownewException("over flow!");

 

        rear =(rear +1)% size;

        queue[rear]= t;

    }
出队
     public T poll() throws Exception
    {
        if(front == rear)
            thrownewException("under flow!");
 
        front =(front +1)% size;
        returnqueue[front];
    }
判空
    public boolean isEmpty(){
        return front == rear;
    }
 

链式存储

 
 
技术分享
类成员
 //结点类

    publicclassNode{

        public T data;

        publicNode next;

 

        publicNode(T obj,Node next){

            this.data = obj;

            this.next = next;

        }

    }

 

    privateNode head,front,rear;
初始化
publicLinkQueue(){
        head =newNode(null,null);
        front = rear = head;
        size =0;
 }
入队
 //从队尾入队
    publicvoid add(T t)
    {
        Node s =newNode(t,null);
        rear.next = s;
        rear = s;
        size++;//队列长度+1
    }
出队
    //从队头出队

    public T poll() throws Exception

    {

        if(rear == front)

            thrownewException("under flow!");

 

        Node temp = front.next;           //暂存队首,以便返回

        front.next = front.next.next;

 

        if(front.next == null)          //最后一个元素出队:还要对队尾处理

            rear = front;

 

        return temp.data;

    }

  


栈(先进后出)

技术分享
技术分享
 
 
 
 
 
 





队列与栈

标签:

原文地址:http://www.cnblogs.com/Doing-what-I-love/p/5445067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!