c_cpp 28.实施strStr- DifficultyEasy - 2018.8.25

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 28.实施strStr- DifficultyEasy - 2018.8.25相关的知识,希望对你有一定的参考价值。

class Solution {
 public:
     int strStr(string haystack, string needle) {
         int hSize = haystack.length();
         int nSize = needle.length();
         if (nSize <= 0) {
             return 0;
         }
         for (int i = 0; i < hSize - nSize + 1; i++) {
             int j = 0;
             for (; j < nSize; j++) {
                 if (haystack[i+j] != needle[j]) {
                     break;
                 }
             }
             if (j == nSize) return i;
         }
         return -1;
     }
 };

以上是关于c_cpp 28.实施strStr- DifficultyEasy - 2018.8.25的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp strstr.cpp

c_cpp [string] strstr,在haystack heystack找到针

[LeetCode] 28. Implement strStr() 实现strStr()函数

28. 实现strStr()

leetcode 28. Implement strStr() 实现strStr()

28. Implement strStr()