Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 후기
- 운영체제론
- 부스트캠프
- 보기 편하라고 만든
- 웹/모바일
- 네이버 부스트 코스
- 네이버
- id # tr # 환경변수
- Virtual Box 7.0.6
- 8기
- Ubuntu 20.04
- 백준 #baekjoon # 2563
Archives
- Today
- Total
목록2023/10/18 (1)
Miner
Day03
1. 큐 선입선출(FIFO) 양뱡향 연결 리스트로 구현 class Node: def __init__(self, item): self.data = item self.prev = None self.next = None class DoublyLinkedList: def __init__(self): self.nodeCount = 0 self.head = Node(None) self.tail = Node(None) self.head.prev = None self.head.next = self.tail self.tail.prev = self.head self.tail.next = None def __repr__(self): if self.nodeCount == 0: return 'LinkedList: empty' ..
데브코스
2023. 10. 18. 16:02