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 |
Tags
- 문자열
- Class
- array
- 알고리즘
- Python
- 오블완
- 백준
- pass by reference
- assignment operator
- 파이썬
- function
- raw data
- 배열
- 반복문
- vscode
- pointer
- string
- Data Science
- 티스토리챌린지
- Object Oriented Programming
- programming
- 함수
- baekjoon
- const
- Pre-processing
- C++
- predictive analysis
- 포인터
- Deep Learning
- OOP
Archives
- Today
- Total
Channi Studies
Basic Data Structures 본문
A data structure is a way of organizing, storing, and performing operations on data.
Array, Linked list, Hash table are some examples of basic data structures.

The selection of data structures used in a program depends on both the type of data being stored and the operations the program may need to perform on that data.
Appending a data into an array and linked list both requires 0 data shift.
However, inserting a data at the front of an array and linked list both with length of N will cause:
N shift from the array, and still 0 shift from the linked list.
'Data Science > Data Structure & Algorithm' 카테고리의 다른 글
| [Algorithm] Big-O Notation | 빅 오 표기법 (0) | 2025.03.12 |
|---|---|
| [Algorithm] Growth of Functions and Complexity (0) | 2025.03.12 |
| [Algorithm] Constant Time Operation (0) | 2025.03.12 |
| [Algorithm] Searching: Linear Search & Binary Search (0) | 2025.03.12 |
| [Data Structure] Arrays & Linked Lists (0) | 2025.03.10 |