编辑
implement-strstr
本文访问次数:0
  1. 1. 问题链接
  2. 2. 问题描述
  3. 3. 解决办法

问题链接

Implement strStr() | LeetCode OJ

问题描述

实现字符串查找函数,给出两个字符串haystackneedle,返回needlehaystack中的第一次出现的位置,不存在则返回-1。

解决办法

public class Solution {
    public int strStr(String haystack, String needle) {
        int haystackLength = haystack.length();
        int needleLength = needle.length();
        if(haystackLength == 0 && needleLength == 0){
            return 0;
        }
        else if(haystackLength == 0){
            return -1;
        }
        else if(needleLength == 0){
            return 0;
        }
        else if(haystackLength < needleLength){
            return -1;
        }
        int startPosition = haystackLength - needleLength;
        for (int i = 0; i <= startPosition; i++) {
            boolean same = true;
            for (int j = 0; j < needleLength; j++) {
                char a = haystack.charAt(i + j);
                char b = needle.charAt(j);
                if (a != b) {
                    same = false;
                    break;
                }
            }
            if (same) {
                return i;
            }
        }
        return -1;
    }
}

需要输入验证码才能留言

没有任何评论