1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 #include <algorithm> 5 #include <sstream> 6 #include <vector> 7 #include <set> 8 9 using namespace std; 10 11 set<string> arr; 12 13 int main() 14 { 15 string str,re; 16 while(cin>>str) 17 { 18 int num=0; 19 int len=str.length(); 20 for(int i=0;i<len;i++) 21 { 22 if(isalpha(str[i])) 23 { 24 str[i]=tolower(str[i]); 25 } 26 else 27 str[i]=‘ ‘; 28 } 29 stringstream ss(str); 30 while(ss>>re) 31 arr.insert(re); 32 } 33 for(set<string>::iterator it=arr.begin();it!=arr.end();it++) 34 { 35 cout<<*it<<endl; 36 } 37 return 0; 38 }
set
set中存储的是有序且除重后的集合
想要访问需要类似于
1 for(set<string>::iterator it=arr.begin();it!=arr.end();it++) 2 { 3 cout<<*it<<endl; 4 }
这样的指针
时间: 2024-10-08 14:24:26