-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstd.hpp
More file actions
214 lines (196 loc) · 5.09 KB
/
Copy pathstd.hpp
File metadata and controls
214 lines (196 loc) · 5.09 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
class String {
public:
char* str;
String(const char* str = nullptr);
String(const String& other);
~String();
String& operator=(const String& other);
String& operator=(const char* str);
String operator+(const String& other) const;
String operator+(const char* str) const;
String& operator+=(const String& other);
String& operator+=(const char* str);
bool operator==(const String& other) const;
bool operator==(const char* str) const;
char& operator[](int index);
const char& operator[](int index) const;
int size() const;
const char* c_str() const;
int toInt() const;
};
String::String(const char* str) {
if (str == nullptr) {
this->str = new char[1];
this->str[0] = '\0';
} else {
int length = 0;
while (str[length] != '\0') {
length++;
}
this->str = new char[length + 1];
for (int i = 0; i < length; i++) {
this->str[i] = str[i];
}
this->str[length] = '\0';
}
}
String::String(const String& other) {
int length = other.size();
this->str = new char[length + 1];
for (int i = 0; i < length; i++) {
this->str[i] = other.str[i];
}
this->str[length] = '\0';
}
String::~String() {
delete[] this->str;
}
String& String::operator=(const String& other) {
if (this != &other) {
delete[] this->str;
int length = other.size();
this->str = new char[length + 1];
for (int i = 0; i < length; i++) {
this->str[i] = other.str[i];
}
this->str[length] = '\0';
}
return *this;
}
String& String::operator=(const char* str) {
delete[] this->str;
if (str == nullptr) {
this->str = new char[1];
this->str[0] = '\0';
} else {
int length = 0;
while (str[length] != '\0') {
length++;
}
this->str = new char[length + 1];
for (int i = 0; i < length; i++) {
this->str[i] = str[i];
}
this->str[length] = '\0';
}
return *this;
}
String String::operator+(const String& other) const {
int length1 = this->size();
int length2 = other.size();
char* new_str = new char[length1 + length2 + 1];
for (int i = 0; i < length1; i++) {
new_str[i] = this->str[i];
}
for (int i = 0; i < length2; i++) {
new_str[length1 + i] = other.str[i];
}
new_str[length1 + length2] = '\0';
String result(new_str);
delete[] new_str;
return result;
}
String String::operator+(const char* str) const {
int length1 = this->size();
int length2 = 0;
while (str[length2] != '\0') {
length2++;
}
char* new_str = new char[length1 + length2 + 1];
for (int i = 0; i < length1; i++) {
new_str[i] = this->str[i];
}
for (int i = 0; i < length2; i++) {
new_str[length1 + i] = str[i];
}
new_str[length1 + length2] = '\0';
String result(new_str);
delete[] new_str;
return result;
}
String& String::operator+=(const String& other) {
int length1 = this->size();
int length2 = other.size();
char* new_str = new char[length1 + length2 + 1];
for (int i = 0; i < length1; i++) {
new_str[i] = this->str[i];
}
for (int i = 0; i < length2; i++) {
new_str[length1 + i] = other.str[i];
}
new_str[length1 + length2] = '\0';
delete[] this->str;
this->str = new_str;
return *this;
}
String& String::operator+=(const char* str) {
int length1 = this->size();
int length2 = 0;
while (str[length2] != '\0') {
length2++;
}
char* new_str = new char[length1 + length2 + 1];
for (int i = 0; i < length1; i++) {
new_str[i] = this->str[i];
}
for (int i = 0; i < length2; i++) {
new_str[length1 + i] = str[i];
}
new_str[length1 + length2] = '\0';
delete[] this->str;
this->str = new_str;
return *this;
}
bool String::operator==(const String& other) const {
int length1 = this->size();
int length2 = other.size();
if (length1 != length2) {
return false;
}
for (int i = 0; i < length1; i++) {
if (this->str[i] != other.str[i]) {
return false;
}
}
return true;
}
bool String::operator==(const char* str) const {
int length1 = this->size();
int length2 = 0;
while (str[length2] != '\0') {
length2++;
}
if (length1 != length2) {
return false;
}
for (int i = 0; i < length1; i++) {
if (this->str[i] != str[i]) {
return false;
}
}
return true;
}
char& String::operator[](int index) {
return this->str[index];
}
const char& String::operator[](int index) const {
return this->str[index];
}
int String::size() const {
int length = 0;
while (this->str[length] != '\0') {
length++;
}
return length;
}
const char* String::c_str() const {
return this->str;
}
int String::toInt() const {
int result = 0;
int length = this->size();
for (int i = 0; i < length; i++) {
result = result * 10 + (this->str[i] - '0');
}
return result;
}