Given two strings s1 and s2, find the index of the first occurrence of s2 in s1 as a substring.
If no such occurence exists, return -1.
This problem is also known as finding needle in a haystack.
Use the Rabin-Karp algorithm to solve this problem.
- rabin karp rolling hash solution
c++
1 | int findStartIndexOfSubstring(string s1, string s2) { |
- kmp solution
c++
1 | vector<int> PI(string& s) { |