1. 程式人生 > >LeetCode28實現strStr()-C語言

LeetCode28實現strStr()-C語言

實現 strStr() 函式。

給定一個 haystack 字串和一個 needle 字串,在 haystack 字串中找出 needle 字串出現的第一個位置 (從0開始)。如果不存在,則返回  -1

示例 1:

輸入: haystack = "hello", needle = "ll"
輸出: 2

示例 2:

輸入: haystack = "aaaaa", needle = "bba"
輸出: -1
int strStr(char* haystack, char* needle) {
    int i, j;
    int len1 = strlen(haystack);
    int len2 = strlen(needle);
    for(i = 0; i <= len1 - len2; i++){
        for(j = 0; j < len2; j++){
            if(haystack[i + j] != needle[j]){
                break;
            }
        }
        if(j == len2) return i;
    }
    return -1;
}