LC3 无重复最长子串

利用滑动窗口加二分,其中二分的情况为前面全是1,后面全是0,找最后一个1出现的位置

int check(char *s, int n) {
    char cnt[128] = {0};
    int p = 0;
    for (int i = 0; i < n; i++) {
        cnt[s[i]]++;
        if (cnt[s[i]] == 1) p += 1;
    }
    if (p == n) return 1;
    for (int i = n; s[i]; i++) {
        cnt[s[i]] += 1;
        if (cnt[s[i]] == 1) p += 1;
        cnt[s[i - n]] -= 1;
        if (cnt[s[i - n]] == 0) p -= 1;
        if (p == n) return 1;
    }
    return 0;
}

int lengthOfLongestSubstring(char* s) {
    int head = 0, tail = strlen(s), mid;
    while (head < tail) {
        mid = (head + tail + 1) >> 1;
        if (check(s, mid) == 1) head = mid;
        else tail = mid - 1;
    }
    return head;
}
posted @ 2019-05-11 09:36  Lee先森的博客  阅读(259)  评论(0编辑  收藏  举报