자료구조 (Data Structures)/스택과 큐, Stack and Queue (3) 썸네일형 리스트형 [Stack and Queue] 데크, Deque https://github.com/cuttingworms/Data-Structures-with-Python GitHub - cuttingworms/Data-Structures-with-Python Contribute to cuttingworms/Data-Structures-with-Python development by creating an account on GitHub. github.com - 데크 (Deque, Double-ended queue) 양쪽 끝에서 삽입과 삭제가 가능한 자료구조 스택과 큐를 혼합한 자료구조 이중 연결 리스트로 구현하는 것이 편리 파이썬에는 데크가 Collections 패키지에 정의되어 있음 - 수행 시간 데크를 배열이나 이중 연결 리스트로 구현한 경우, 스택과 큐의 수행 .. [Stack and Queue] 큐, Queue https://github.com/cuttingworms/Data-Structures-with-Python GitHub - cuttingworms/Data-Structures-with-Python Contribute to cuttingworms/Data-Structures-with-Python development by creating an account on GitHub. github.com - 큐 (Queue) 한 쪽에서는 삽입만, 다른 한 쪽에서는 삭제만이 이뤄지는 자료구조 선입선출(First-In First-Out, FIFO) 원칙 하에 삽입과 삭제 수행 - 연산 데이터 삽입 : Enqueue 데이터 삭제 : Dequeue 데이터 읽기 : Front - 수행 시간 파이썬 리스트로 구현한 큐의 삽입.. [Stack and Queue] 스택, Stack https://github.com/cuttingworms/Data-Structures-with-Python GitHub - cuttingworms/Data-Structures-with-Python Contribute to cuttingworms/Data-Structures-with-Python development by creating an account on GitHub. github.com - 스택 (Stack) 한 쪽 끝에서만 새로운 항목을 저장하거나 삭제하는 자료구조 후입선출(Last-In First-Out, LIFO) 원칙 하에 삽입과 삭제 수행 - 연산 데이터 삽입 : Push 데이터 삭제 : Pop 데이터 읽기 : Top - 수행 시간 파이썬의 리스트로 구현한 스택의 삽입과 삭제 연산은 각각.. 이전 1 다음