-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMAP.cpp
80 lines (50 loc) · 1.33 KB
/
MAP.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<iostream>
#include<map>
#include<vector>
#include<unordered_map>
using namespace std;
int main() {
multimap<string,int>fruits;
fruits.insert(make_pair("Mango",12));
fruits.insert(make_pair("Apple",123));
fruits.insert(make_pair("Guava",1234));
fruits.insert(make_pair("Guava",1234));
for(auto it:fruits){
cout<<"Fruit - "<<it.first<<endl;
cout<<"Count - "<<it.second<<endl;
}
}
// int main() {
// unordered_map<int,string>record;
// // map<int,string>record;
// record.insert(make_pair(3,"ria"));
// record[2] = "nisHitHa";
// record[1] = "arJun";
// for(auto pair:record){
// cout<<pair.first<<" "<<pair.second<<endl;
// }
// return 0;
// }
// //////////////////////PROBLEM://///////////////////////////
// int main() {
// int n;
// cin>>n;
// vector<int> input(n);
// for(int i=0;i<n;i++){
// cin>>input[i];
// }
// map<int,int>freq;
// for(int i=0;i<n;i++){
// // Storing frequency of every element in input array
// freq[input[i]]++;
// }
// int sum = 0;
// // pair : element, frequency...
// for(auto pair:freq){
// if(pair.second>1){
// sum+=pair.first;
// }
// }
// cout<<"ANS- "<<sum<<endl;
// return 0;
// }