-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencoding_test.cpp
More file actions
62 lines (55 loc) · 829 Bytes
/
encoding_test.cpp
File metadata and controls
62 lines (55 loc) · 829 Bytes
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
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
int find_x(vector<char> v,char x)
{
vector<char>::iterator it=v.begin();
for(;it!=v.end();)
{
if((*it)==x)
{
return 1;
break;
}
else
{
it++;
}
}
if(it==v.end())
return 0;
}
int main(void)
{
string s;
s="aaabbbbccccdddefffeeee";
//cout<<s;
//cout<<count(s.begin(),s.end(),'1');
vector<char> v;
for(string::iterator it=s.begin();it!=s.end();it++)
{
if(v.empty())
v.push_back(*it);
else
{
if(find_x(v,(*it)))
;
else
{
v.push_back(*it);
}
}
}
for(vector<char>::iterator it=v.begin();it!=v.end();it++)
{
cout<<count(s.begin(),s.end(),(*it))<<(*it);
}
//use for test
/* vector<char> v;
v.push_back('a');
v.push_back('b');
cout<<find_x(v,'c')<<endl;
*/
}