C++ 字符串翻转

文章源头:https://blog.csdn.net/szu_aker/article/details/52422191#

第一种:使用string.h中的strrev函数

#include 
#include 
using namespace std;
 
int main()
{
    char s[]="hello";
 
    strrev(s);
 
    cout<

第二种:使用algorithm中的reverse函数

#include 
#include 
#include 
using namespace std;
 
int main()
{
    string s = "hello";
 
    reverse(s.begin(),s.end());
 
    cout<

第三种:自己编写

#include 
using namespace std;
 
void Reverse(char *s,int n){
    for(int i=0,j=n-1;i

 

你可能感兴趣的:(辅助算法设计技巧)