본문 바로가기

Algorithm

자료구조 Linked_list

반응형

==Linked_list(node들이 link된 자료구조이다)==

- Node

- LinkedList = LinkedNode


- Add


- Print


- Remove

- 여기 remove 부분 마지막 노드와 중간 부분 node 지울 때 잘못됨..

- 다른 코드 및 해결책 github에 올림



- Reverse


source-code : The-G



reference : http://interactivepython.org/courselib/static/pythonds/BasicDS/ImplementinganUnorderedListLinkedLists.html

reference : 상상개발자


반응형

'Algorithm' 카테고리의 다른 글

자료구조 Binary_Search_Tree  (0) 2017.10.03
자료구조 Heap / Heap_Sort  (0) 2017.10.03
자료구조 Queue / Stack  (0) 2017.10.03
Sorting (정렬)  (0) 2017.10.02
Big-O notation / Time Complexity / Space Complexity  (0) 2017.10.02