반응형
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 | 31 |
Tags
- Pair
- Heap
- connected_component
- 구현
- Articulation_Point
- qsort
- 총정리
- sort
- class_template
- sstream
- c++
- 13305
- red-black tree
- 문법
- 5397
- 백준
- Biconnected_Component
- data_structure
- singly Linked List
- deletion
- function_template
- Critical_Path_Analysis
- STL
- 예제
- 알고리즘
- '0'
- template
- Algorithm
- list
- 자료구조
Archives
- Today
- Total
- Today
- Total
- 방명록
목록singly Linked List (1)
어제의 나보다 성장한 오늘의 나
[C++] Singly Linked List(싱글 링크드 리스트) 구현
Singly Linked List란? ◎ 단일 방향으로 노드들이 연결되어 있는 STL container 중 하나이다. ◎ 데이터를 가지고 있는 연결된 노드들의 맨 앞과 맨 뒤에는 Head , Tail 이름의 노드가 있다. ◎ 노드들은 모두 next라는 노드 포인터를 가지고 있어서 다음 노드와 연결 할 수 있다. 구현 ◎ Class 와 Struct를 사용하여 좀 더 깔끔한 코드를 구현하였다. ◎ Template 을 사용하여 int 뿐만 아니라 다른 Type의 자료형을 위한 Container로도 사용할 수 있다. Coding 1) 기본 구조 template struct Node{ T data; // Node 속 data 저장 Node* next = nullptr; }; template class Singli..
c++/data_structure_구현
2022. 2. 12. 19:08