DOM 또한 Tree data structure을 갖는다.linked list도 tree 타입인데, single direction의 tree이다.lookup, delete, insert 모두 O(logN) 이다.preserve relationship를 갖고 있다는 것B
linked list로 만들어진 head를 reverse 하는 방법아래 그림을 참고하면서 단계적으로 설명한다.그림의 가장 위는 초기상태의 linked list를 나타낸다.마지막으로 head = first로 바꾼다. (그림의 초록색 head 표시)요약하면, 첫번째 poi
데이터들은 다양한 Graph 형태로 연결되어 있다. Tree와 Linked List 또한 Graph의 종류 중 하나이다.Vertex : nodeEdge : vertex 사이의 연결선장점 : Relationship단점 : scaling의 어려움Directed vs Und
Pros : Readability, DRYCons : Large StackEvery time you are using a tree or converting Something into a tree, consider recursion.Divided into a number