04 2020 档案
摘要:1.实现 #include <iostream> #include <vector> using namespace std; template<class T> void merge(vector<T>& a, int left, int mid, int right) { vector<T> t
阅读全文
摘要:share_ptr 简单实现: #include <iostream> using namespace std; template<class T> class SmartPtr { public: SmartPtr(T* ori_ptr); ~SmartPtr(); SmartPtr(SmartP
阅读全文