28. Implement strStr()
Posted 高数考了59
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了28. Implement strStr()相关的知识,希望对你有一定的参考价值。
1 static int wing=[]() 2 { 3 std::ios::sync_with_stdio(false); 4 cin.tie(NULL); 5 return 0; 6 }(); 7 8 class Solution 9 { 10 public: 11 int strStr(string haystack, string needle) 12 { 13 int mlen=haystack.length(); 14 int slen=needle.length(); 15 if(slen==0) 16 return 0; 17 for(int i=0;i<mlen-slen+1;i++) 18 { 19 int j=0; 20 for(;j<slen;j++) 21 { 22 if(haystack[i+j]!=needle[j]) 23 break; 24 } 25 if(j==slen) 26 return i; 27 } 28 return -1; 29 } 30 };
基本算是暴力解法,问题不大。
以上是关于28. Implement strStr()的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 28. Implement strStr() 实现strStr()