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 |
Tags
- 티스토리챌린지
- 반복문
- 배열
- Object Oriented Programming
- 알고리즘
- assignment operator
- Deep Learning
- 백준
- Data Science
- 포인터
- pass by reference
- 함수
- string
- Pre-processing
- 문자열
- OOP
- 파이썬
- C++
- 오블완
- Python
- programming
- Class
- baekjoon
- predictive analysis
- pointer
- raw data
- array
- function
- vscode
- const
Archives
- Today
- Total
Channi Studies
[Data Structure] Deque (ADT) 본문
A deque (pronounced "deck" and short for double-ended queue) is an ADT in which items can be inserted and removed at both the front and back.
The deque push-front operation inserts an item at the front of the deque, and the push-back operation inserts at the back of the deque.
The pop-front operation removes and returns the item at the front of the deque, and the pop-back operation removes and returns the item at the back of the deque.


'Data Science > Data Structure & Algorithm' 카테고리의 다른 글
[Data Structure] Circular Queue (ADT) (0) | 2025.04.02 |
---|---|
[Data Structure] Stack (ADT) (0) | 2025.04.02 |
[Data Structure] Array–Based Lists (ADT) (0) | 2025.03.28 |
[Data Structure] Doubly-Linked Lists (0) | 2025.03.28 |
[Data Structure] Singly-Linked Lists (0) | 2025.03.27 |