LeetCode 28. Implement strStr() C 언어

423 단어 매일 LeetCode
제목 설명:
Implement strStr().
Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
일치하는 문자열이 시작되는 위치, kmp 알고리즘을 찾는 것이다.
내 코드:
int strStr(char* haystack, char* needle) {
    int a = 0;
    int b = 0;
    int A = strlen(haystack);
    int B=  strlen(needle);
    if(B==0){
        return 0;
    }
    int index = -1;
    while(a

좋은 웹페이지 즐겨찾기