码迷,mamicode.com
首页 > 编程语言 > 详细

python日记-使用队列写出特殊字数串

时间:2018-07-10 23:41:13      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:输入数据   author   insert   data   split   bsp   一个   queue   style   

 1 __author__ = "yang xin"
 2 from sys import stdin
 3 # 给出一串数字,首先将第一个数删除,紧接着把第二个数放在这串数字的最后
 4 # 再将第三个数删除,然后将下一个数放在这串数字的最后,直到把最后一个数
 5 # 删除,然后将删除的数字连接起来输出
 6 
 7 test=[]
 8 
 9 ###################################
10 # 先写一个处理输入数据
11 while True:
12     line=stdin.readline().strip()
13     if line=="":
14         break
15     item=line.split( )
16     item=[int(i) for i in item]
17     test=item
18 ###################################
19 head=0;
20 tail=test.__len__()
21 while head<tail:
22     print(test[head])
23     head+=1
24     if head<=tail-1:#防止列表下边溢出报错
25         test.append(test[head]) 
26     # test[tail]=test[head]
27     tail+=1
28     head+=1

 补充:

队列的封装:

__author__ = "yang xin"

class Queue:

    def __init__(self,maxnumber):
        self.maxnumber=maxnumber
        self.head=0
        self.tail=0
        self.queue=[]
    def top(self,value):
        if self.isFull():
            return False
        self.queue.append(value)#或者self.queue.insert(tail,value)
        self.tail+=1
        
    def pop(self):
        if self.isEmpty():
            return False
        data=self.queue[self.head]
        self.head+=1
        return data
    
    def isEmpty(self):
        if self.head==self.tail:
            return True
        return False
    def isFull(self):
        if self.tail==self.maxnumber:
            return True
        return False

 

python日记-使用队列写出特殊字数串

标签:输入数据   author   insert   data   split   bsp   一个   queue   style   

原文地址:https://www.cnblogs.com/yangdagaoge/p/9291856.html

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