-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplace_element.h
More file actions
138 lines (127 loc) · 4.14 KB
/
Copy pathreplace_element.h
File metadata and controls
138 lines (127 loc) · 4.14 KB
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
#ifndef CPP_ALGORITHM_REPLACE_ELEMENT_H
#define CPP_ALGORITHM_REPLACE_ELEMENT_H
#include <string>
#include <vector>
namespace ReplaceElement
{
/**
* \brief Replace element and remove element in the array. Keep the array size.
* \param arr input array
* \param replace_str replace string
* \param remove_str remove string
* \return result array
*/
std::vector<std::string> ReplaceAndRemoveString1(
std::vector<std::string>& arr,
const std::string& replace_str,
const std::string& remove_str);
/**
* \brief Replace element and remove element in the array.
* Use some STL algorithms.
* \param arr input array
* \param replace_str replace string
* \param remove_str remove string
* \return result array
*/
std::vector<std::string> ReplaceAndRemoveString2(
std::vector<std::string>& arr,
const std::string& replace_str,
const std::string& remove_str);
/**
* \brief Telex encoding for punctuation marks.
* Replace '.' with 'DOT', ',' with 'COMMA', '?' with 'QUESTION_MARK', '!' with 'EXCLAMATION_MARK'.
* \param arr input array (possibly contains punctuation marks)
* \return result array
*/
std::vector<std::string> TelexEncoding(
std::vector<std::string>& arr);
}
// ----------------------------------------------------------------------------
inline std::vector<std::string> ReplaceElement::ReplaceAndRemoveString1(
std::vector<std::string>& arr,
const std::string& replace_str,
const std::string& remove_str)
{
int write_index = 0;
int a_count = 0;
for (int i = 0; i < static_cast<int>(arr.size()); ++i)
{
if (arr[i] != remove_str)
{
arr[write_index++] = arr[i];
}
if (arr[i] == replace_str)
{
++a_count;
}
}
int current_index = write_index - 1;
write_index = write_index + a_count - 1;
const int final_size = write_index + 1;
while (current_index >= 0)
{
if (arr[current_index] == replace_str)
{
arr[write_index--] = "d";
arr[write_index--] = "d";
}
else
{
arr[write_index--] = arr[current_index];
}
--current_index;
}
return std::vector<std::string>{arr.begin(), arr.begin() + final_size};
}
// ----------------------------------------------------------------------------
inline std::vector<std::string> ReplaceElement::ReplaceAndRemoveString2(
std::vector<std::string>& arr,
const std::string& replace_str,
const std::string& remove_str)
{
std::erase(arr, remove_str);
for (int i = 0; i < static_cast<int>(arr.size()); ++i)
{
if (arr[i] == replace_str)
{
arr[i] = "d";
arr.insert(arr.begin() + i + 1, "d");
}
}
return arr;
}
// ----------------------------------------------------------------------------
inline std::vector<std::string> ReplaceElement::TelexEncoding(
std::vector<std::string>& arr)
{
for (int i = 0; i < static_cast<int>(arr.size()); ++i)
{
if (arr[i] == ".")
{
auto str = std::vector<std::string>{"D", "O", "T"};
arr.erase(arr.begin() + i);
arr.insert(arr.begin() + i, str.begin(), str.end());
}
else if (arr[i] == ",")
{
auto str = std::vector<std::string>{"C", "O", "M", "M", "A"};
arr.erase(arr.begin() + i);
arr.insert(arr.begin() + i, str.begin(), str.end());
}
else if (arr[i] == "?")
{
auto str = std::vector<std::string>{"Q", "U", "E", "S", "T", "I", "O", "N", "_", "M", "A", "R", "K"};
arr.erase(arr.begin() + i);
arr.insert(arr.begin() + i, str.begin(), str.end());
}
else if (arr[i] == "!")
{
auto str = std::vector<std::string>{"E", "X", "C", "L", "A", "M", "A", "T",
"I", "O", "N", "_", "M", "A", "R", "K"};
arr.erase(arr.begin() + i);
arr.insert(arr.begin() + i, str.begin(), str.end());
}
}
return arr;
}
#endif