在 C/C++ 中颠倒字符串的不同方法


在本教程中,我们将讨论一个程序,了解在 C/C++ 中颠倒字符串的不同方法。

示例

用户定义的 reverse() 函数 −

 实时演示

#include <bits/stdc++.h>
using namespace std;
//function to reverse given string
void reverse_str(string& str){
   int n = str.length();
   for (int i = 0; i < n / 2; i++)
      swap(str[i], str[n - i - 1]);
}
int main(){
   string str = "tutorialspoint";
   reverse_str(str);
   cout << str;
   return 0;
}

使用内置 reverse() 函数 −

 实时演示

#include <bits/stdc++.h>
using namespace std;
int main(){
   string str = "tutorialspoint";
   reverse(str.begin(), str.end());
   cout << str;
   return 0;
}

打印给定字符串的颠倒形式−

 实时演示

#include <bits/stdc++.h>
using namespace std;
void reverse(string str){
   for (int i=str.length()-1; i>=0; i--)
      cout << str[i];
}
int main(void){
   string s = "tutorialspoint";
   reverse(s);
   return (0);
}

输出

tniopslairotut

更新时间:2020-03-23

3000+ 次浏览

开启你的 事业

完成课程获得认证

开始
广告