暴力法:
遍历字符串,挨个字符往后对比,但凡出现相同的则把后面的字符串往前挪
记得末位补位结束符'\0'
1 #include2 #include 3 #include 4 using namespace std; 5 #define maxn 1005 6 int main() 7 { 8 char str[maxn]; 9 char c;10 // int strlen=0;11 int i,j,k,length=0;12 while(scanf("%s",&str)!=EOF)13 {14 length=strlen(str);15 for(i=0; i