| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- pointer
- vscode
- baekjoon
- C++
- pass by reference
- OOP
- predictive analysis
- function
- programming
- 파이썬
- 오블완
- assignment operator
- Data Science
- const
- 포인터
- 배열
- 알고리즘
- Class
- 함수
- Pre-processing
- 반복문
- array
- 백준
- 문자열
- Python
- Deep Learning
- string
- 티스토리챌린지
- raw data
- Object Oriented Programming
- Today
- Total
목록2025/03/27 (2)
Channi Studies
Singly-Linked List Singly-Linked List is a data structure for implementing a list ADT, where each node has data and a pointer to the next node. The list structure typically has pointers to the list's first node and last node, called the head and tail, respectively.A singly-linked list is a type of positional list: A list where elements contain pointers to the next and/or previous elements in the..
A 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, ..