git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| class Queue(object):
 | |
|     def __init__(self):
 | |
|         self.lhs = []
 | |
|         self.rhs = []
 | |
| 
 | |
|     def enqueue(self, x):
 | |
|         self.lhs.append(x)
 | |
| 
 | |
|     def dequeue(self):
 | |
|         if self.rhs:
 | |
|             return self.rhs.pop()
 | |
|         while self.lhs:
 | |
|             self.rhs.append(self.lhs.pop())
 | |
|         if self.rhs:
 | |
|             return self.rhs.pop()
 | |
|         else:
 | |
|             raise Exception("Attempting to remove an item from an empty queue")
 |