without haste but without rest
[python] 자료구조 - 큐(Queue) 본문
큐(Queue)
큐는 엔큐(Enqueue)와 디큐(Dequeue)로 구성
Enqueue: 데이터 인풋
Dequeue: 데이터 아웃풋
1. 가장 먼저 삽입한 데이터가 가장 먼저 출력 ex) line up
2. FIFO (First-in First-out), LILO (Last-in Last-out) 구조
3. 멀티 태스킹을 위한 프로세스 스케쥴링 방식 구현에서 자주 사용
# Queue
class Queue:
def __init__(self):
self.queue_list = []
def enqueue(self, data):
self.queue_list.append(data)
def dequeue(self):
if self.queue_list == []:
return False
else:
res = self.queue_list[0]
del self.queue_list[0]
return res
# Test code
myQueue = Queue()
for a in range(10):
myQueue.enqueue(a)
print(myQueue.queue_list)
for a in range(11):
print(myQueue.dequeue())
'Computer Science > Data Structure' 카테고리의 다른 글
[python] 자료구조 - 오픈 해싱(Open Hashing) (1) | 2020.02.04 |
---|---|
[python] 자료구조 - 해시 테이블(Hash Table) (0) | 2020.02.04 |
[python] 자료구조 - 더블 링크드 리스트(Doubly Linked List) (0) | 2020.02.03 |
[python] 자료구조 - 링크드 리스트(Linked List) (0) | 2020.02.02 |
[python] 자료구조 - 스택(Stack) (0) | 2020.02.02 |
Comments