实验7-3-10 删除重复字符(20 分)

实验7-3-10 删除重复字符(20 分)

本题要求编写程序,将给定字符串去掉重复的字符后,按照字符ASCII码顺序从小到大排序后输出。

输入格式:

输入是一个以回车结束的非空字符串(少于80个字符)。

输出格式:

输出去重排序后的结果字符串。

输入样例:

1
ad2f3adjfeainzzzv

输出样例:

1
23adefijnvz
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include<stdio.h>

int main(void)

{

char str[80], ch;

int i=0, j, index;

while((str[i] = getchar( )) != '\n')

i++;

str[i] = '\0';

for(i=0;str[i];i++){

index=i;

for(j=i+1;str[j];j++)

if(str[j] < str[index])
index=j;

ch=str[index];

str[index]=str[i];

str[i]=ch;

}

ch=0;

for(i = 0; str[i] != '\0'; i++)

if(str[i]!=ch){

putchar(str[i]);

ch=str[i];

}

putchar('\n');

return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×