[ 声明:版权全部,转载请标明出处,请勿用于商业用途. 联系信箱:libin493073668@sina.com] 题目链接:https://leetcode.com/problems/implement-strstr/ 题意: 给定两个串,判定needle串是否haystack串的子串,假设是,返回匹配的起始位置.假设不是,则返回-1 思路: 直接两个循环暴力解决 class Solution { public: int strStr(string haystack, string need…