题解 | #编写函数实现字符串翻转(引用方式)#
编写函数实现字符串翻转(引用方式)
http://www.nowcoder.com/practice/46eb5bd3ebc544fc96d335c8cb7d30f1
//采用引用的方式,所以做一个swap function #include<bits/stdc++.h> using namespace std; void swap(string &s) { int len = s.length(); for (int i = 0; i < len/2; i++) { char temp = s[len - i - 1]; s[len - i - 1] = s[i]; s[i] = temp; } }
int main(){ string s; getline(cin,s); // write your code here...... swap(s); cout<<s; return 0; } //不采用引用的话,用reverse即可 #include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); // write your code here...... reverse(s.begin(),s.end()); cout<<s; return 0; }