이중 링크드리스트
-
이중 링크드 리스트 구현@ 16. 1 ~ 17. 1/자료구조 2013. 3. 31. 16:44
이중 링크드 리스트 구현.. 삽입 삭제, 출력만 우선 구현.... #include #include #include using namespace std; class DoubleNode { private: int data; public: DoubleNode* pRlink; DoubleNode* pLlink; public: int GetData() { return data; } void InputData(int num) { data=num; } }; class DoubleList { public: int CurrentCount; DoubleNode HeadNode; public: DoubleList() { CurrentCount=0; HeadNode.pLlink=&HeadNode; HeadNode.pRlink..