ReverseString
ReverseString.java 源码
package algorithm.string.leetcode;
/**
* @author roseduan
* 反转字符串
*/
public class ReverseString {
public void reverseString(char[] s) {
int i = 0, j = s.length - 1;
while (i < j) {
char temp = s[i]; s[i] = s[j]; s[j] = temp;
i++; j--;
}
}
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦