[Data Structure] Stack & Queue & Deque

제한된 접근(삽입, 삭제)만 허용 (Stack, Queue, Dequeue 모두 동일)

출처 : https://gohighbrow.com/stacks-and-queues/
스택과 큐의 구조를 가장 잘 보여주는 예시

Stack 스택


```python class Stack: def init(self): self.items = []. #데이터 저장을 위한 리스트 준비

def push(self, val):
    self.items.append(val)

Continue reading

Pagination


© 2021. by hminkim