Python实现基本数据结构---队列操作

#! /usr/bin/env python
#coding=utf-8

class Queue(object):
    def __init__(self,size):
        self.size=size
        self.head=-1 #初始化队头
        self.tail=-1 #初始化队尾
        self.queue=[]

    def EnQueue(self,x):
        if self.IsFull():#如果试图往满队列插入元素,则发生上溢
            raise Exception("overflow !")
        else:
            self.queue.append(x)
            self.tail += 1 #往队列中加入元素是在尾部进行

    def DeQueue(self):
        if self.IsEmpty():#如果试图从空队列删除元素,则发生下溢
            raise Exception("underflow !")
        else:
            self.head += 1#从队列中删除元素在队头进行,将队头后移
            return self.queue.pop(0)#利用内建函数pop()将队头弹出

    def IsFull(self):#判断队列满
        #return (self.tail+1)%self.size == self.head
        return self.tail-self.head+1==self.size
    def IsEmpty(self):#判断队列空!!!
        return self.head == self.tail

if __name__ == '__main__':
    q=Queue(10)
    for i in range(3):
        q.EnQueue(i)
    print q.queue
    print q.DeQueue()
    print q.queue
    print q.DeQueue()
    print q.IsEmpty()
    print q.DeQueue()
    print q.IsEmpty()
    print q.queue
    for i in range(9):
        q.EnQueue(i)
    print q.queue
    print q.IsFull()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值