首页 > 编程语言 > 详细

c++ vector set map

时间:2017-02-19 10:19:28      阅读:215      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享

 

 

技术分享

技术分享

技术分享

 

技术分享
 1 #include <iostream>
 2 #include <vector>
 3 #include <algorithm>
 4 #include <stdlib.h>
 5 #include <bits/stdc++.h>
 6 using namespace std;
 7 
 8 int main()
 9 {
10     set<string> a;
11     int n,d;
12     string word;
13     cin>>n;
14     for(int i=0;i<n;i++)
15     {
16         cin>>d>>word;
17         transform(word.begin(),word.end(),word.begin(),::tolower);
18         if(d==0)
19         {
20             a.insert(word);
21         }
22         else
23         {
24             if(a.count(word))
25             {
26                 cout<<"Yes"<<endl;
27             }
28             else
29             {
30                 cout<<"No"<<endl;
31             }
32         }
33     }
34 
35     return 0;
36 }
View Code

 

 

技术分享

使用方法

技术分享

也可以使用如下方式插入

技术分享

查找某个关键字是否被映射过也是和vector和set一样用count()方法

技术分享

通过迭代器iterator遍历

技术分享

 

技术分享

技术分享

技术分享
 1 #include <iostream>
 2 #include <vector>
 3 #include <algorithm>
 4 #include <stdlib.h>
 5 #include <bits/stdc++.h>
 6 using namespace std;
 7 
 8 int main()
 9 {
10     map<string,string> dic;
11     string beg;
12     cin>>beg;
13     string v;
14     while(1)
15     {
16         cin>>v;
17         string k;
18         if(v!="END")
19         {
20             cin>>k;
21             dic.insert(pair<string,string>(k,v));
22         }
23         else
24         {
25             break;
26         }
27     }
28 
29     cin>>beg;
30     string text;
31     getline(cin,text);
32     while(1)
33     {
34         getline(cin,text);
35         if(text!="END")
36         {
37             int p=0;
38             while(p<text.length())
39             {
40                 //每次组成一个单词,决定是否替换
41                 string word;
42                 while(65<=text[p]&&90>=text[p]||97<=text[p]&&122>=text[p])
43                 {
44                     word+=text[p];
45                     p++;
46                 }
47                 if(!(65<=text[p]&&90>=text[p]||97<=text[p]&&122>=text[p]))
48                 {
49                     p++;
50                 }
51                 if(dic.count(word))
52                 {
53                     //下标移动替换后变换的长度
54                     int b=dic[word].length()-word.length();
55                     p+=b;
56                     //替换单词
57                     text.replace(text.find(word),word.length(),dic[word]);
58                 }
59             }
60             cout<<text<<endl;
61         }
62         else
63         {
64             break;
65         }
66     }
67     return 0;
68 }
View Code

 

c++ vector set map

原文:http://www.cnblogs.com/wangkaipeng/p/6414582.html

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