码迷,mamicode.com
首页 > 编程语言 > 详细

华为机试—字符串去重排序

时间:2015-01-05 09:33:58      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:华为机试   字符串去重排序   去重排序   

输入一个字符串,去掉重复出现的字符,并把剩余的字符串排序输出。


#include <iostream>
#include <string>
using namespace std;

void sort(string s)
{
	 char tmp[100];
	 int len=s.size();
	 int count=0,i,j;
	 for (i=0;i<len;i++)
	 {
		 for (j=i+1;j<len;j++)
		 {
              if (s[i]==s[j])
              {
				  s[j]='0';
              }
		 }

	 }

	 for (i=0;i<len;i++)
	 {
		 if (s[i]>='a' && s[i]<='z')
		 {
			 tmp[count++]=s[i];
		 }
	 }

	 //冒泡排序
	 for (i=0;i<count;i++)
	 {
		 for (j=0;j<i;j++)
		 {
			 char temp;
			 if (strcmp(&tmp[j],&tmp[i])>0)
			 {
                 temp=tmp[j];
				 tmp[j]=tmp[i];
				 tmp[i]=temp;
			 }
		 }
	 }


	 for (i=0;i<count;i++)
		cout<<tmp[i];

	 cout<<endl;
}

void main()
{
	string s;
	cin>>s;
	sort(s);
}


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

技术分享


华为机试—字符串去重排序

标签:华为机试   字符串去重排序   去重排序   

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

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