-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLectureNote.cpp
139 lines (119 loc) · 2.82 KB
/
LectureNote.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Lecture Note
// https://algospot.com/judge/problem/read/LECTURE
#include <iostream>
#include <string>
#include <vector>
using namespace std;
void sort(int size, vector<string>& tokens);
void merge(vector<string>& firstPart, vector<string>& secondPart,
vector<string>& target);
int main() {
int nTestCases = 0;
vector<string> words;y7ghv 7787ysgy67g
vector<string> tokens;
size_t position = 0;
// Get number of test cases
cin >> nTestCases;
// Get user inputs iterated by number of test cases
for (int i = 0; i < nTestCases; i++)
{
string aString;
cin >> aString;
words.push_back(aString);
}
for (vector<string>::iterator i = words.begin();
i != words.end();
++i)
{
// Divide the user inputs into substrings each length is 2
int sizeOfSubset = i->size() / 2;
if (sizeOfSubset % 2 != 0)
{
sizeOfSubset++;
}
// Clear list and position
tokens.clear();
position = 0;
// Make subsets of stream
for (int count = 0; count < sizeOfSubset; count++)
{
tokens.push_back(i->substr(position, 2));
position += 2;
}
// Sort list
sort(tokens.size(), tokens);
// Print out sorted list
for (int j = 0; j < tokens.size(); j++)
{
cout << tokens[j];
}
cout << endl;
}
return 0;
}
void sort(int size, vector<string>& target)
{
if (size > 1)
{
// Initialize 2 parts
vector<string> firstPart;
vector<string> secondPart;
// Get size of 2 parts
int firstPartSize = size / 2;
int secondPartSize = size - firstPartSize;
// Divide target list into 2 parts
for (int i = 0; i < firstPartSize; i++)
{
firstPart.push_back(target.at(i));
}
for (int i = firstPartSize; i < size; i++)
{
secondPart.push_back(target.at(i));
}
// Divide until only 2 elements are in part
sort(firstPart.size(), firstPart);
sort(secondPart.size(), secondPart);
// Merge 2 parts into sorted list
merge(firstPart, secondPart, target);
}
}
void merge(vector<string>& firstPart, vector<string>& secondPart,
vector<string>& target)
{
int firstPosition = 0;
int secondPosition = 0;
int targetPosition = 0;
while ((firstPosition < firstPart.size()) &&
(secondPosition < secondPart.size()))
{
// Copy element that is bigger than in the other one.
if (firstPart.at(firstPosition) < secondPart.at(secondPosition))
{
target.at(targetPosition) = firstPart.at(firstPosition);
firstPosition++;
}
else
{
target.at(targetPosition) = secondPart.at(secondPosition);
secondPosition++;
}
targetPosition++;
}
// Copy all remainders into list to sort
if (firstPosition >= firstPart.size())
{
for (int i = secondPosition; i < secondPart.size(); i++)
{
target.at(targetPosition) = secondPart.at(i);
targetPosition++;
}
}
else
{
for (int i = firstPosition; i < firstPart.size(); i++)
{
target.at(targetPosition) = firstPart.at(i);
targetPosition++;
}
}
}