首页 > 代码库 > 字符串倒序
字符串倒序
将 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 }
字符串倒序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。