日期:2014-05-20 浏览次数:20725 次
public class C
{
public static void main(String[] args)
{
System.out.println(reverseString("Hello World!"));
}
public static String reverseString(String s)
{
char[] chs = s.toCharArray(); // 将字符串变成数组
reverse(chs); // 将数组反转
return new String(chs); // 将数组变成字符串
}
private static void reverse(char[] arr) // 实现reverse方法
{
for(int start=0,end=arr.length-1;start>end;start++,end--)
{
swap(arr,start,end);
}
}
private static void swap(char[] arr,int x ,int y) //实现swap方法
{
char temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}