LC 反转字符串
Posted yangbocsu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LC 反转字符串相关的知识,希望对你有一定的参考价值。
LC 反转字符串
编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[ ] 的形式给出。不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。
你可以假设数组中的所有字符都是 ASCII 码表中的可打印字符。
【代码1.0】
class Solution {
public void reverseString(char[] s) {
char temp;
int length = s.length;
for (int i = 0; i < length/2; i++)
{
temp = s[i];
s[i] = s[length - 1 - i];
s[length - 1 - i] = temp;
}
}
}
【代码1.1】
双指针
class Solution {
public void reverseString(char[] s) {
char temp;
int length = s.length;
for (int i = 0,j = length - 1; i < j; i++,j--)
{
temp = s[j];
s[j] = s[i];
s[i] = temp;
}
}
}
以上是关于LC 反转字符串的主要内容,如果未能解决你的问题,请参考以下文章