这个的最简单写法就是调用函数了,哈哈偷懒的写法,

class Solution {
public:
    int strStr(string haystack, string needle) {
        return haystack.find(needle);
    }
};