일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- collections.deque
- 2750
- markdown
- Python
- codesignal
- 파이썬 포렌식
- 2015 봄학기 알고리즘
- matrixElementsSum
- recursion
- 피보나치 수
- centuryFromYear
- C++
- All Longest Strings
- 백준
- til
- flask
- Counting cells in a blob
- cpp
- 10953
- 수 정렬하기
- codesingal
- adjacentElementsProduct
- Sequential Search
- shapeArea
- baekjun
- Numpy
- 파이썬머신러닝완벽가이드
- data_structure
- Daily Commit
- almostIncreasingSequence
Archives
- Today
- Total
Introfor
[data_structure] Queue 본문
Queue는 스택과 달리 한 쪽에서 들어가서 다른 한 쪽으로 나오는 구조로 파이프을 연상하면 쉽게 이해할 수 있다. 일직선으로 양쪽이 뚫린 파이프 모형에 어떤 물체를 넣는다면 처음에 넣어던 물체가 제일 처음 나오는 구조인 것을 알 수 있다. 이것을 FIFO(First In First Out)이라고 한다.
class Queue:
def __init__(self):
self.items = []
self.max = 5
def add(self, item):
if len(self.items) < self.max:
self.items.append(item)
else:
print('no space')
def remove(self):
if len(self.items) > 0:
self.items.pop(0)
else:
print('no item')
def peek(self):
print(self.items[0])
def print_queue(self):
print(self.items)
queue = Queue()
queue.add(1)
queue.add(2)
queue.add(3)
queue.print_queue()
queue.remove()
queue.print_queue()
queue.peek()
'Doing > Python' 카테고리의 다른 글
파이썬 자료형에 따른 주요 연산자의 시간 복잡도 (0) | 2020.09.11 |
---|---|
[Algorithm] Recursion (0) | 2020.07.23 |
[Algoritm] Stack (0) | 2020.07.20 |
numpy 기초 (0) | 2020.07.13 |
문자열 앞 0으로 채우기 (0) | 2020.07.05 |
Comments