中reverse函數用法?
reverse函數功能是逆序(或反轉),多用于字符串、數組、容器。頭文件是#include <algorithm>
reverse函數用于反轉在[first,last)范圍內的順序(包括first指向的元素,不包括last指向的元素),reverse函數無返回值
eg.
string str="hello world , hi";
reverse(str.begin(),str.end());//str結果為 ih , dlrow olleh
vector<int> v = {5,4,3,2,1};
reverse(v.begin(),v.end());//容器v的值變為1,2,3,4,5
下一篇什么時候用重定向