首页 > 其他 > 详细

2015年校招--华为上机笔试题--去重复单词

时间:2014-09-13 22:52:02      阅读:352      评论:0      收藏:0      [点我收藏+]
#include "stdafx.h"
#include<set>
#include<string>
#include<iostream>
using namespace std;

int main()
{
	set<string> s;
	char buf[1000]={0};

	gets(buf);
	char* p=buf;
	while(*p!=0)
	{
		if(*p==',' || *p=='.')
		{
			*p=' ';
		}
		p++;
	}
	p=strtok(buf," ");
	
	while(p!=NULL)
	{
		string tmp=p;
		if(s.find(tmp)==s.end())
		{
			cout<<tmp<<" ";
			s.insert(tmp);
		}
		p=strtok(NULL," ");
	}

	cout<<endl;
	return 0;    
}

2015年校招--华为上机笔试题--去重复单词

原文:http://blog.csdn.net/cjc211322/article/details/39255889

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!