入门题就是熟悉一些语法的,呵呵
class Solution { public: /** * 反转字符串 * @param str string字符串 * @return string字符串 */ string solve(string str) { // write code here int i = 0; int j = str.length()-1; while(i<j){ swap(str[i], str[j]); i++; j--; } return str; } };
class Solution { public: /** * 反转字符串 * @param str string字符串 * @return string字符串 */ string solve(string str) { // write code here int i = 0; int j = str.length()-1; while(i<j){ swap(str[i], str[j]); i++; j--; } return str; } };