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
- function
- pass by reference
- const
- raw data
- pointer
- programming
- baekjoon
- Data Science
- Object Oriented Programming
- Deep Learning
- Pre-processing
- C++
- 백준
- 알고리즘
- 오블완
- 문자열
- Python
- 반복문
- 함수
- string
- array
- assignment operator
- 배열
- 포인터
- 파이썬
- predictive analysis
- 티스토리챌린지
- Class
- OOP
- vscode
Archives
- Today
- Total
Channi Studies
[Data Structure] List Abstract Data Type (ADT) 본문
Data Science/Data Structure & Algorithm
[Data Structure] List Abstract Data Type (ADT)
Chan Lee 2025. 3. 27. 03:59A list is a common ADT for holding ordered data, having operations like append a data item, remove a data item, search whether a data item exists, and print the list.
Since it's an Abstract Data Type, a user need not have knowledge of the internal implementation of the list ADT.
In many different languages, even though they can have a variation on the available operaitons and its implementation, but the most common opeartions for list ADTs can be sum up to:

'Data Science > Data Structure & Algorithm' 카테고리의 다른 글
| [Data Structure] Doubly-Linked Lists (0) | 2025.03.28 |
|---|---|
| [Data Structure] Singly-Linked Lists (0) | 2025.03.27 |
| [Sorting] Fast Sorting Algorithms & Sorting in Python (0) | 2025.03.19 |
| [Sorting] Radix Sort (0) | 2025.03.18 |
| [Sorting] Merge Sort (0) | 2025.03.18 |