분류 전체보기 (53) 썸네일형 리스트형 [Mu] Pitchfork The 50 Best Albums of 2021 https://pitchfork.com/features/lists-and-guides/best-albums-2021/ The 50 Best Albums of 2021 The albums that got us through a very strange year, featuring Tyler, the Creator, Adele, Jazmine Sullivan, Playboi Carti, and more pitchfork.com 올해도 좋은 앨범이 많이 나왔군 칸예 한결같이 싫어하네 얘넨 [Tree] 트리, Tree 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 - 순차 구조 vs 계층 구조(Sequential structure vs Hierarchical structure) 순차 구조 (Sequential structure) 파이썬 리스트나 연결 리스트는 데이터를 개념적으로 일렬로 저장하므로 "순서"가 정의되고, 연산은 순차적으로 진행됨 탐색이 모든 데이터를 순서대로 검.. [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 - 수행 시간 파이썬의 리스트로 구현한 스택의 삽입과 삭제 연산은 각각.. [Mu] SOPHIE LIVESTREAM HEAV3N SUSPENDED [Mu] Jimmy Edgar - Live at Appleville [List] 원형 연결 리스트, Circular Linked List 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 - 원형 연결 리스트 (Circular Linked List) 마지막 노드가 첫 노드와 연결된 단순 연결 리스트 원형 연결 리스트에서는 마지막 노드의 레퍼런스가 저장된 Last가 단순 연결 리스트의 Head와 같은 역할 마지막 노드와 첫 노드를 O(1)에 방문할 수 있다는 장점 리스트가 Empty가 아니면 어떤 노.. 이전 1 ··· 3 4 5 6 7 다음