摘要: 1.数列求和迭代器 2.无内存占用vector #include<bits/stdc++.h> using namespace std; struct node{ int val; node& operator = (int v){ val += v; return *this; } }; stru 阅读全文
posted @ 2023-02-01 07:39 CDsidi 阅读(85) 评论(4) 推荐(1) 编辑