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
posted @ 2021-05-07 08:48
posted @ 2021-05-05 18:59