| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- assignment operator
- C++
- Class
- 문자열
- function
- 배열
- pointer
- baekjoon
- predictive analysis
- 알고리즘
- pass by reference
- 백준
- const
- 포인터
- programming
- 반복문
- 함수
- Pre-processing
- OOP
- Python
- Deep Learning
- vscode
- 파이썬
- 오블완
- array
- Object Oriented Programming
- raw data
- Data Science
- 티스토리챌린지
- string
- Today
- Total
목록Data Science/Data Structure & Algorithm (58)
Channi Studies
Data StructureA data structure is a way of organizing, storing, and performing operations on data.Some of the operations that can be performed on a data structure include accessing or updating data, searching for specific data, inserting new data, and removing data. In our post, we will take on data structures while focusing on the array and linked list. These basic data structures form many abs..
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. ..