原题链接
双指针法
原地反转字符串
class Solution {
public void reverseString(char[] s) {
int i=0;
int j=s.length-1;
while(i<=j){
char tmp=s[i];
s[i]=s[j];
s[j]=tmp;
i++;
j--;
}
}
}