-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSplit_Strings.cpp
60 lines (42 loc) · 1.13 KB
/
Split_Strings.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
#include<string>
#include<vector>
#include<iostream>
std::vector<std::string> solution(const std::string &s)
{
std::vector<std::string> result;
for( int x =0 ; x < s.length(); x+=2)
{
std::string new_str =s.substr(x,2);
// std::cout<<new_str<<std::endl;
result.push_back(new_str);
}
if(s.length()&0x01)
{
result[result.size()-1].append("_");
// cout<<" length = " << s.length()<<"X= " <<x<<endl;
}
return result; // Your code here
}
int main()
{
using namespace std;
std::string test ="LovePizza";
std::vector<std::string> result;
// for( int x =0 ; x < test.length(); x+=2)
// {
// std::string new_str =test.substr(x,2);
// std::cout<<new_str<<std::endl;
// result.push_back(new_str);
// }
// if(test.length()&0x01)
// {
// result[result.size()-1].append("_");
// cout<<" length = " << test.length()<<"X= " <<x<<endl;
// }
result = solution(test);
for( std::string x :result)
// for(int x=0; x< result.size();x++)
{
cout<<x.c_str()<<endl;
}
}