반응형
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
- singly Linked List
- 5397
- Heap
- list
- class_template
- 백준
- 구현
- '0'
- 예제
- sstream
- Critical_Path_Analysis
- 문법
- sort
- 13305
- 자료구조
- Articulation_Point
- deletion
- red-black tree
- 총정리
- Biconnected_Component
- 알고리즘
- Algorithm
- STL
- qsort
- function_template
- Pair
- template
- connected_component
- c++
- data_structure
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