reverse 反轉函式

2021-09-11 06:36:00 字數 634 閱讀 7331

reverse用法

1.reverse函式反轉string

2.reverse函式反轉字元陣列

例子:分析與解答:

reverse用法

1.reverse函式反轉string

#include

#include

#include

using namespace std;

int main()

例子:

題目描述

輸入輸入乙個字串,以回車結束。該字串長度不超過100,包含多個單詞,單詞之間有乙個或多個空格。

輸出輸出一行,即單詞翻轉後的字串,注意每對單詞之間的空格數量保持不變。

分析與解答:

1.遇到空格直接輸出

2.遇到字元,把單詞存入乙個陣列裡,反轉後輸出這個單詞

#include

#include

#include

#include

#include

using namespace std;

int main()

i–;reverse(b,b+k);

cout<}

reverse函式 反轉容器內容

reverse函式可以反轉乙個容器中的內容,包含在庫中。1 函式原型 reverse函式等同於下面的 template void reverse bidirectionaliterator first,bidirectionaliterator last reverse函式使用iter swap來交...

reverse 函式反轉字串以及陣列

例子 分析與解答 include include include using namespace std int main 題目描述 輸入 輸入乙個字串,以回車結束。該字串長度不超過100,包含多個單詞,單詞之間有乙個或多個空格。輸出 輸出一行,即單詞翻轉後的字串,注意每對單詞之間的空格數量保持不變...

字串反轉reverse

我們有一串字串,比如 declare source varchar max abcdefghijklmnopqrstuvwxyz 現想把它反轉顯示 zyxwvutsrqponmlkjihgfedcba此時,你可以寫乙個方法來處理 description 反轉字元 create function db...