摘要: //1 #include <bits/stdc++.h> using namespace std; int main(){ list<int> a={1,2,3,4,5}; list<int> b={6,7,8,9,10}; a.splice(a.end(),b); list<int>::itera 阅读全文
posted @ 2024-01-05 19:42 fushuxuan1 阅读(17) 评论(0) 推荐(0)