题解 | #字符串包含#

字符串包含

https://www.nowcoder.com/practice/661e24c11de64e78804fdce653dafb0e

C++版的KMP算法:
#include <iostream>
#include <string>
using namespace std;

    void getNext(int* next, const string& s) {
        int j = 0;
        next[0] = 0;
        for(int i = 1; i < s.size(); i++) {
            while (j > 0 && s[i] != s[j]) {
                j = next[j - 1];
            }
            if (s[i] == s[j]) {
                j++;
            }
            next[i] = j;
        }
    }

void pan(string A, string B) {
    int next[A.size()];
    getNext(next, B);
    int j = 0;
    for(int i = 0; i < A.size(); i++) {
        while(j > 0 && A[i] != B[j]) {
            j = next[j-1];
        }
        if(A[i] == B[j]) {
            j++;
        }
        if(j == B.size()) {
            cout << 1;
            return;
        }
    }
        cout << 0;
        return; 
}

int main() {
    string A, B;
    cin >> A;
    cin >> B;
    if(A.size() < B.size()) {
        pan(B, A);
    }
    else pan(A, B);
    return 0;
 
}


全部评论

相关推荐

头像
11-26 15:46
已编辑
中南大学 后端
字节国际 电商后端 24k-35k
点赞 评论 收藏
分享
10-10 17:54
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务