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
- 문자열
- predictive analysis
- 함수
- string
- Python
- pass by reference
- pointer
- 백준
- Pre-processing
- 파이썬
- const
- Data Science
- Deep Learning
- OOP
- Class
- 포인터
- vscode
- programming
- assignment operator
- 오블완
- Object Oriented Programming
- array
- function
- 알고리즘
- raw data
- baekjoon
- 배열
- C++
- 티스토리챌린지
- 반복문
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 |