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
- Class
- 알고리즘
- 파이썬
- 백준
- 함수
- 오블완
- 포인터
- assignment operator
- pass by reference
- array
- 문자열
- Pre-processing
- const
- raw data
- 배열
- 반복문
- C++
- Python
- Object Oriented Programming
- Deep Learning
- predictive analysis
- vscode
- string
- function
- 티스토리챌린지
- OOP
- baekjoon
- programming
- Data Science
- pointer
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] Hash Table - 2 | Linear Probing & Quadratic Probing (0) | 2025.04.09 |
---|---|
[Data Structure] Hash Table - 1 | Basic Operations & Chaining Collision Handling Technique (0) | 2025.04.09 |
[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 |