-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString.cpp
154 lines (139 loc) · 2.29 KB
/
String.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#include"String.h"
#pragma warning(disable:4996)
#include<cstring>
#include<exception>
using namespace std;
void String::free()
{
/// wanted to write
//delete[] str;
/// but it throws an exception which i could not handle
str[0] = '\0';
}
void String::copy(const String& other)
{
str = new char[strlen(other.str) + 1];
strcpy(str, other.str);
size = other.size;
}
void String::deleteStr()
{
free();
}
String::String()
{
str = new char[1];
str[0] = '\0';
size = 0;
}
String::String(const char* string)
{
if (string == nullptr)
{
str = new char[1];
str[0] = '\0';
size = 0;
}
else
{
size = strlen(string);
str = new char[size + 1];
strcpy(str, string);
}
}
String::String(const String&other)
{
copy(other);
}
String& String::operator=(const String& other)
{
if (this != &other)
{
deleteStr();
copy(other);
}
return *this;
}
char String::operator[](size_t index) const
{
return str[index];
}
size_t String::getSize() const
{
return size;
}
void String::concat(const String& other)
{
char* temp = new char[getSize() + other.getSize() + 1];
strcpy(temp, str);
strcat(temp, other.str);
delete[] str;
str = temp;
size = size + other.getSize();
}
bool String::hasSameString(const String nam) const
{
size_t size = nam.getSize();
size_t mysize = getSize();
if (checkRow(nam) == 0) {
return 0;
}
if (this == &nam) {
return 1;
}
else if (size == mysize) {
for (size_t i = 0; i <= size; i++) {
if (str[i] != nam[i]) {
return 0;
}
}
return 1;
}
return 0;
}
bool String::compareStrings(const String nam) const
{
size_t size = nam.getSize();
size_t mysize = getSize();
if (checkRow(nam) == 0) {
return 0;
}
if (hasSameString(nam)) {
return 1;
}
else if (size < mysize) {
size_t i = 0;
while (i <= mysize) {
if (str[i] == nam[0]) {
size_t j = i;
bool is = 1;
while (is == 1 && j - i <= size) {
if (str[j] != nam[j - i]) {
is = 0;
}
else {
j++;
}
}
if (is == 1) {
return 1;
}
else {
i++;
}
}
else {
i++;
}
}
}
return 0;
}
const char* String::c_str() const
{
return str;
}
String::~String()
{
deleteStr();
}