2021年5月7日

C++之STL(2):Algorithm

摘要: reverse #include<iostream> #include<algorithm> using namespace std; int main() { int a[5] = {11,22,33,44,55}; reverse(a,a+5); for(int i = 0; i < 5; i+ 阅读全文

posted @ 2021-05-07 08:48 小星◎ 阅读(98) 评论(0) 推荐(0)

导航