[算法学习] 找出字符串中第一个匹配项的下标

RoLingG 算法 2024-04-11

每日算法 找出字符串中第一个匹配项的下标

例题:28. 找出字符串中第一个匹配项的下标

题目描述:

给你两个字符串 haystackneedle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从 0 开始)。如果 needle 不是 haystack 的一部分,则返回 -1

代码:

//暴力穷举版
class Solution {
    public int strStr(String haystack, String needle) {
        int hlength = haystack.length();
        int nlength = needle.length();
        for (int i = 0; i + nlength-1 < hlength; i++) {
            boolean flag = true;
            for (int j = 0; j < nlength; j++) {
                if (haystack.charAt(i + j) != needle.charAt(j)) {
                    flag = false;
                    break;
                }
            }
            if (flag) {
                return i;
            }
        }
        return -1;
    }
}

还有一个KMP算法版本,但我目前还不会(

PREV
[算法学习] 最长回文串
NEXT
[Git学习] Git相关

评论(0)

发布评论