1.怎样实现字符串的反转比如:"how are you"--->"you are how" public class InverseString { public void swap(char[] arr,int front,int end){//将char[]反转 while(front<end){ char temp=arr[end]; arr[end]=arr[front]; arr[front]=temp; front++; end--; } }…
1.怎样实现字符串的反转比如:"how are you"--->"you are how" 2.怎样推断2个字符串是否有同样的字符组成 比如"aaaabbc"跟"abcbaaa" 3.怎样删除String中反复的字符good 4.怎样统计String中有多少个单词 5.怎样输出String的全部组合…