यहां हम एक प्रोग्राम देखेंगे जो बता सकता है कि दो तार एक दूसरे के घूर्णन हैं या नहीं। स्ट्रिंग्स का रोटेशन इस तरह है -
मान लीजिए कि दो तार S1 ='HELLO' और S2 ='LOHEL' हैं, तो वे एक दूसरे के घूर्णन हैं। HELLO को तीन स्थिति में बाईं ओर घुमाने से यह LOHEL होगा।
इस समस्या को हल करने के लिए, हम पहली स्ट्रिंग को अपने साथ जोड़ेंगे, फिर जांचेंगे कि दूसरी स्ट्रिंग में मौजूद है या नहीं। तो HELLO के लिए, यह HELLOHEL होगा एलओ. फिर इस संयोजित स्ट्रिंग में LOHEL होता है। [नमस्कार]।
एल्गोरिदम
isRotation(str1, str2)
begin if lengths of str1, and str2 are not same then return false; temp := concatenate str1 with str1 itself if temp contains str2, then return true otherwise return false end
उदाहरण
#include<iostream> using namespace std; bool isRotation(string str1, string str2){ if(str1.length() != str2.length()) return false; string con_str = str1 + str1; if(con_str.find(str2) != string::npos){ return true; } else { return false; } } main() { string str1, str2; cout << "Enter two strings: "; cin >> str1 >> str2; if(isRotation(str1, str2)){ cout << "Two strings are rotation of each other"; } else { cout << "Two strings are not rotation of each other"; } }
आउटपुट
Enter two strings: STACK CKSTA Two strings are rotation of each other