list實現

//爲了避免與stl衝突,使用命名空間 namespace Swy { //類型用模板,所以實現都在頭文件中 //swy實現鏈表 template<class elemType> class list_item { public: list_item(elemType value, list_item* link = 0) :_value(value) { //把v
相關文章
相關標籤/搜索