标签:
1 #include<stdio.h> 2 #include<iostream> 3 #include<string.h> 4 #include<algorithm> 5 #include<string> 6 using namespace std; 7 int main() 8 { 9 char str[10010]; 10 string b[10010]; 11 int i; 12 while(gets(str)&&str[0]!=‘#‘) 13 { 14 // cout<<str<<endl; 15 char *p=strtok(str," "); 16 int k=0,count=0; 17 while(p) 18 { 19 b[k++]=p; 20 p=strtok(NULL," "); 21 } 22 sort(b,b+k); 23 24 for( i=0;i<k;i++) 25 { 26 while(i<k-1&&b[i]==b[i+1])//aabbd 27 { 28 i++; 29 } 30 count++; 31 } 32 printf("%d\n",count); 33 } 34 return 0; 35 }
要好好理解sort函数。
标签:
原文地址:http://www.cnblogs.com/wangmengmeng/p/4626816.html