2014年7月华为校招机试真题2

去除重复字符并排序

运行时间限制:无限制

内容限制:       无限制

输入:              字符串

输出:              去除重复字符并排序的字符串

样例输入:       aabcdefff

样例输出:       abcdef

#include<stdio.h>
#include<iostream>
#include <iterator>
#include<map>
using namespace std;

void stringFilter(const char *pInputStr, char *pOutputStr)  
{  
	int length=strlen(pInputStr);
	int j(0);
	map<char,int> m;
	for(int i=0; i<length; i++)
	     m[pInputStr[i]]++;
	for( map<char,int>::iterator iter= m.begin();iter!=m.end();iter++)
	     pOutputStr[j++] = (*iter).first;
	pOutputStr[j]='\0';

}
void stringFilter1(const char *pInputStr, char *pOutputStr) 
{
	if (pInputStr == NULL || pOutputStr == NULL ){
		return; 
	}
	int length = strlen(pInputStr);
	if (length < 255){
		int a[256]={0};//必须初始化不然内存存的是各种各样的数值
		const char* pstr = pInputStr; 
		char* pResult = pOutputStr; 
		while ( *pstr != '\0'){
			++a[*pstr - 'a'];
			if (a[*pstr - 'a'] > 1){
				pstr++;
			}
			else {
				*pResult++ = *pstr++;
			}
		}
		*pResult = '\0';
	}
	else{
		cout << "Please input the 1-255 zifuchaun " << endl;
		return; 
	}
}

int main()
{
	char a[256];
	strcpy(a,"aabcdefff");//bbabacacde
	char b[256]="";
        //stringFilter(a,b);//将字符排序后输出,不符合有些情况
	stringFilter1(a,b);
	cout << a << endl;
	cout << "字符过滤后:\n";
	cout << b << endl;
	return 0;
}


测试结果:

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值