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