public static String reverseString(String x)
{
if(x==null || x.length()<2) return x;
return reverseString(x.substring(1)) ++ x.charAt(0);
}
{
if(x==null || x.length()<2) return x;
return reverseString(x.substring(1)) ++ x.charAt(0);
}
2648
2万+

被折叠的 条评论
为什么被折叠?