题目描述
通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串过滤程序,若字符串中出现多个相同的字符,将非首次出现的字符过滤掉。
比如字符串“abacacde”过滤结果为“abcde”。
要求实现函数:
void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr);
【输入】pInputStr: 输入字符串
lInputLen: 输入字符串长度
【输出】pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
【注意】只需要完成该函数功能算法,中间不需要有任何IO 的输入输出
示例
输入:“deefd” 输出:“def”
输入:“afafafaf” 输出:“af”
输入:“pppppppp” 输出:“p”
通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串过滤程序,若字符串中出现多个相同的字符,将非首次出现的字符过滤掉。
比如字符串“abacacde”过滤结果为“abcde”。
要求实现函数:
void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr);
【输入】pInputStr: 输入字符串
lInputLen: 输入字符串长度
【输出】pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
【注意】只需要完成该函数功能算法,中间不需要有任何IO 的输入输出
示例
输入:“deefd” 输出:“def”
输入:“afafafaf” 输出:“af”
输入:“pppppppp” 输出:“p”
#include <stdio.h>
#include <string.h>
void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr){
int i, j;
int flag = 0;//标示是否重复出现
int lenOut = 0;//记录当前输出字符串的长度
*pOutputStr = *pInputStr;
lenOut++;
for(i = 0; i < lInputLen; i++){
flag = 0;
for(j = 0; j < lenOut; j++){
//用于检查是否和之前的字符出现相等
if(pInputStr[i] == pOutputStr[j]){
flag = 1;
break;//出现与之前的字符相等的字符,跳出检查是否相等的循环
}
}
if(!flag){
pOutputStr[lenOut] = pInputStr[i];
lenOut++;
}
}
pOutputStr[lenOut] = '\0';
}
void main(){
char input[100];
char output[100];
int len;
strcpy(input, "pppppppp");
printf("%s\n", input);
len = strlen(input);
stringFilter(input, len, output);
printf("%s\n", output);
getchar();
}