-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcount.cpp
73 lines (52 loc) · 1.36 KB
/
count.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
#include<map>
#include<iostream>
#include<set>
// excellent code
// #include <map>
// #include <string>
// std::map<char, unsigned> count(const std::string& string) {
// std::map<char, unsigned> r;
// for (const char& c: string) ++r[c];
// return r;
// }
// //#include <map>
// #include <string>
// #include <algorithm>
// #include <set>
// std::map<char, unsigned> count(const std::string& string) {
// std::map<char, unsigned> result;
// std::set<char> characters;
// int count;
// for (char c : string){
// characters.insert(c);
// }
// for (char c : characters){
// count = std::count(string.begin(), string.end(), c);
// result.insert(std::pair<char, unsigned> (c, count));
// std::cout << c << std::endl;
// }
// return result;
// }
using namespace std;
std::map<char, unsigned> count(const std::string& string) {
std::map<char,unsigned>res;
std::set<char> uiq_str{string.cbegin(),string.cend()};
for(auto x : uiq_str)
{
int cnt=0;
for(size_t y =0; y< string.length(); y++)
if(string.at(y)==x)cnt++;
cout<<x<<"="<<cnt<<endl;
res.insert({x,cnt});
}
return res;
}
int main()
{
std::map<char,unsigned>res;
res = count("aba");
for(auto x: res)
cout<< x.first << "=" << x.second<<endl;
cout<<"hello world"<<endl;
return 0;
}