싱글 링크드 리스트와는 다르게 노드가 이전 노드와 이후 노드를 둘 다 가르기코 있음!.! 특이하게도 처음 생성자에서 head와 tail이 아무런 값을 가지고 있지 않은 더미 노드를 가르키게 만들어 준당 더블 링크드 리스트에선 특정 위치의 노드를 삭제하거나 삽입 할 때 노드들을 연결해주는 linkNodes를 구현했다 :) template class doubleLinkedList { public: // push back element! void push_back(T element) { node* newNode = new node(element); linkNodes(tail, newNode); ++size; } // find element at selected index node* findNode(int fi..