-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImplement_strstr.cpp
40 lines (38 loc) · 968 Bytes
/
Implement_strstr.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
// Problem Link - https://www.interviewbit.com/problems/implement-strstr/
/*Problem Solution Function ----------------------------+
bool string_checker(string A, string B, int hack) <----+
{
for (int j = 0; j < B.size(); j++)
{
if(A[hack+j] != B[j]) return false;
}
return true;
}
int Solution::strStr(const string A, const string B) {
if(B.empty() || A.empty() || B.size()>A.size()) return -1;
for (int i = 0; i < A.size()-B.size()+1; i++)
{
if(string_checker(A,B,i)) return i;
}
return -1;
}
*/
#include <bits/stdc++.h>
using namespace std;
bool string_checker(string A, string B, int hack)
{
for (int j = 0; j < B.size(); j++)
{
if(A[hack+j] != B[j]) return false
}
return true;
}
int strstr(string A, string B)
{
if(B.empty() || A.empty()) return -1;
for (int i = 0; i < A.size()-B.size()+1; i++)
{
if(string_checker(A,B,i)) return i;
}
return -1;
}