字符串倒序

Posted 业精于勤荒于嬉,行成于思毁于随

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串倒序相关的知识,希望对你有一定的参考价值。

将 I am Beijing. 倒序为Beijing. like I 

用栈实现:

技术分享
 1 #include <iostream>
 2 #include <stack>
 3 #include <string>
 4 using namespace std;
 5 int main()
 6 {
 7     string str = "I like Beijing.";
 8     str =   + str;
 9     string newStr = "";
10     stack<char> st;
11     for (int i = str.length() - 1; i >= 0; i--)
12     {
13         char c = str.at(i);
14         if (c !=   )
15         {
16             st.push(c);
17         }
18         else {
19             string temp = "";
20             while (!st.empty())
21             {
22                 temp += st.top();
23                 st.pop();
24             }
25             newStr += temp  +  ;
26         }
27     }
28     cout<<newStr<<endl;
29 }
View Code

 

以上是关于字符串倒序的主要内容,如果未能解决你的问题,请参考以下文章

C语言、输入四位数、倒序输出。

Java实现字符串倒序输出的几种方法

PHP学习笔记:输入一句话,实现单词倒序输出

Third practice 4

小5聊Python字符串大小写转换并倒序输出 | Python技能树征题

请教C语言字符串倒序输出