forked from mandliya/algorithms_and_data_structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-9-string-rotation.cpp
44 lines (40 loc) · 1.28 KB
/
1-9-string-rotation.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
/**
* Cracking the coding interview 1-9
* You have a function "isSubstring" which checks whether a string is substring of another.
* Given two strings s1 and s2, write code to check if s2 is a rotation of s1 using only one call to "isSubstring".
*
* Approach:
* example s1 = "waterbottle", and s2 = "erbottlewat", clearly s2 is rotation of s1.
* lets say s1 = xy ==> wat + erbottle
* similarly s2 = yx ==> erbottle + wat
* Therefore s1s1 = "waterbottlewaterbottle", clearly s2 is substring of s1s1
* So if a string is formed by rotation of another string, it will always be substring of concatenated original string to itself.
*/
#include <iostream>
#include <string>
bool isRotation( std::string s1, std::string s2 ) {
size_t len1 = s1.length();
size_t len2 = s2.length();
if ( len1 == 0 || len1 != len2 ) {
return false;
}
std::string concatS1 = s1 + s1;
if ( concatS1.find(s2) != std::string::npos ) {
return true;
} else {
return false;
}
}
int main() {
std::string s1, s2;
std::cout << "Enter string 1 : ";
std::cin >> s1;
std::cout << "Enter string 2 : ";
std::cin >> s2;
if ( isRotation(s1, s2) ) {
std::cout << "Yes! " << s2 << " is rotation of " << s1 << std::endl;
} else {
std::cout << "No! " << s2 << " is not a rotation of " << s1 << std::endl;
}
return 0;
}