컴퓨터 공학/자료구조 (1) 썸네일형 리스트형 [C++] Doubly Linked List(더블 링크드리스트) 본 포스팅은 [Data Structure & Algorithm in C++ -Goodrich]의 내용을 많이 참조하여 작성되었습니다. C++로 List의 ADT(Abstract Data Type)을 구현하는 방법은 여러가지 이다. 더블 링크드 리스트 // Doubly_linked_list.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; typedef int Elem; class NodeList { private: struct Node { Elem elem; Node* prev; Node* next; }; public: class Iterat.. 이전 1 다음