摘要: #include<iostream>using namespace std;template<class T>class Array{public: class LinkUnit{ public: T obj; LinkUnit *next; LinkUnit(){ next=NULL; } ~Li 阅读全文
posted @ 2021-11-02 11:32 Kzss 阅读(28) 评论(0) 推荐(0)