스택과 큐 자료구조
스택과 큐 자료구조
스택 자료구조
stack = []
stack.append(5)
stack.append(2)
stack.append(3)
stack.pop()
stack.append(1)
stack.append(4)
stack.pop()
print(stack[::-1]) #최상단 원소부터 출력
print(stack) # 최하단 원소부터 출력
큐 자료구조
from collections import deque
queue = deque()
queue.append(5)
queue.append(3)
queue.append(7)
queue.append(1)
print(queue) # 먼저 들어온 순서대로 출력
queue.reverse() # 역순으로 바꾸기
Author And Source
이 문제에 관하여(스택과 큐 자료구조), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dongmen5149/스택과-큐-자료구조저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)