Queue

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class Queue:#ihahandle nito yung queue ng mga scholars both SHS ata College

def __init__(self): #initiate/maggawa ng deque(queue)


self.queue = deque()

def addToQueue(self, student):#iaadd yung student/applicant sa list


self.queue.append(student)

def processQueue(self):#tatanggalin yung pinakauna


return self.queue.popleft()

def getSize(self):#irereturn kung ilan laman ng queue


return len(self.queue)

You might also like