码迷,mamicode.com
首页 > 其他好文 > 详细

华为机试—字符串过滤

时间:2014-12-27 16:13:22      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:华为机试   字符串过滤   过滤   

题目:字符串过滤

通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串过滤程序,若字符串中出现多个相同的字符,将非首次出现的字符过滤掉。
比如字符串“abacacde”过滤结果为“abcde”。
 
要求实现函数:  
void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr);
   
【输入】 pInputStr:  输入字符串
                 lInputLen:  输入字符串长度          
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
     
【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出
       
示例  
输入:“deefd”        输出:“def”
输入:“afafafaf”     输出:“af”

输入:“pppppppp”     输出:“p”


#include <iostream>  
using namespace std;  
  
void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr)  
{  
    bool flag[26] = {0};   
    int j = 0;  
    for(int i = 0;i < lInputLen;i++)  
    {  
        if(flag[pInputStr[i] - 'a'] == 0)//pInputStr[i]第一次出现.  
        {  
            pOutputStr[j++] = pInputStr[i]; 
            flag[pInputStr[i] - 'a'] = 1;  
        }  
    }  
    pOutputStr[j] = '\0';  
}  

  
int main()  
{  
    char input[20]; 
    char output[20];  

	while(cin>>input){

		stringFilter(input,strlen(input), output);  
		cout << output << endl <<endl;  
	}

	cout<<endl;
      
    return 0;  
}  


测试结果,可能想的不周全,欢迎查漏补缺:

技术分享


华为机试—字符串过滤

标签:华为机试   字符串过滤   过滤   

原文地址:http://blog.csdn.net/wtyvhreal/article/details/42193537

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!