摘要: typedef void* POS; // 定位标志template <class T>class CIIList{protected: struct SNode { SNode *pPrev; SNode *pNext; T data; }; SNode* GetNodeAt(int i_nIndex) const;private: CIIList(const CIIList& i_yList){} CIIList& operator = (const CIIList& i_yList){return *this;}public: CIIList(); ~ 阅读全文
posted @ 2012-09-07 22:44 疯狂青蛙 阅读(267) 评论(0) 推荐(0) 编辑