用動態數組實現了順序表

/* 用動態數組實現了順序表 做者:呂翔宇 e-mail:630056108@qq.com ALL RIGHTS RESERVED! 版權全部© */ #include<iostream> template<typename T> class List { public: List(int n) { content = new T[n]; maxLength = n; } ~Lis
相關文章
相關標籤/搜索