2022年4月11日
摘要: 1 class bu { 2 public: 3 int num = 0; 4 bu(int val) { 5 this->num = val; 6 } 7 }; 8 9 template <class T> 10 void bubble(T* arr, int len) { 11 12 for ( 阅读全文
posted @ 2022-04-11 14:15 laremehpe 阅读(47) 评论(0) 推荐(0) 编辑