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