oj。innlab,net 进程跟踪

六眼飞鱼酱① 提交于 2020-01-25 07:31:18

#include<iostream>
#include<cstdlib>
#include<cmath>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
using namespace std;
int cnt = 0;
char hash[10000];
map<string,int> q;
struct e
{
 char ch[1000];
}E[10005];
void read( char str[] )
{
 int i = 0;
 char ch[10000];
 while( str[i] && str[i] != '(' )
  ch[i] = str[i],++i;
 ch[i] = 0;
 q[ch] = 0;
}
int main(  )
{
 
 char str[1005];
 int t = 3;
 while( t-- && gets( str )  )
 {
  read( str );
 }
 map<string,int>::iterator it;
 for( it = q.begin(); it != q.end(); ++it )
  cout << it -> first<<endl;
 //system( "pause" );
 return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!