摘要:
#include <iostream>#include <cstdlib> template<class T>void changeLength1D(T*& a, int oldLength, int newLength) { if(newLength<0) { std::cout<<"new le 阅读全文
摘要:
#include <iostream>#include <sstream>#include <fstream>#include <cmath>#include <iterator>#include <algorithm> template<class T>class linearList { pub 阅读全文