最基本的顺序表(经典顺序表)
摘要:
// 顺序表.cpp -- 最基本的顺序表(经典顺序表)
// 完整的class. // List abstract class -- 线性表的C++抽象类声明
template<class Elem> class List()
{ public: // Reinitialize the list. the client is responsible for // reclaiming the storange used by the list elements. virtual void clear() = 0; // Insert an element at the f... 阅读全文
posted @ 2011-09-17 13:44 1.曲待续 阅读(184) 评论(0) 推荐(0)
浙公网安备 33010602011771号