일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- ftz
- 정렬 알고리즘
- ftz level13
- pwnable.kr
- PHP
- Stack
- 파이썬
- 시간복잡도
- level13
- 백준
- 스택
- 암호수학
- C
- OSI
- web
- 파일 시스템
- War Game
- Java
- HTML
- c언어
- LoB
- windosws wbcs
- windosw 문자열
- 두근두근 자료구조
- 미로 탐색 알고리즘
- 재귀
- 큐
- System
- SWiFT
Archives
- Today
- Total
목록SWiFT (11)
나의 기록, 현진록
[Swift] Data Structure Linear Deque 자료구조 선형 덱
dbguswls030/Argorithm Contribute to dbguswls030/Argorithm development by creating an account on GitHub. github.com 덱의 예 덱은 큐를 응용하여 만들어진 것으로 전단(front)과 후단(rear)에서 모두 삽입, 삭제가 가능한 큐를 의미한다. 구현에 필요한 요소 init() : 덱을 초기화 함 add_front(e) : 주어진 요소 e를 덱의 맨 앞에 추가한다. delete_front() : 전단 요소를 삭제하고 반환한다. add_rear(e) : 주어진 요소 e를 덱의 맨 뒤에 추가한다. delete_rear() : 전단 요소를 삭제하지 않고 반환한다. get_front() : 전단 욯소를 삭제하지 않고 반환한다...
Programming/Algorithm & Data Structure
2021. 6. 24. 22:26