Implement_strStr --leetcode

package com.helloxin.leetcode.algorithms;

/**
 * Implement strStr().

 Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

 Example 1:

 Input: haystack = "hello", needle = "ll"
 Output: 2
 Example 2:

 Input: haystack = "aaaaa", needle = "bba"
 Output: -1

 */

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * create by nandiexin on 2017/12/19
 **/
public class Implement_strStr {

    /**
     * 假如使用 string 的函数
     * @param haystack
     * @param needle
     * @return
     */
    public static int strStr(String haystack, String needle) {
           return haystack.indexOf(needle) ;
    }

    /**
     * 用两个for循环 去解决问题  如果字符串长了  要匹配多久呢?
     * @param haystack
     * @param needle
     * @return
     */
    public static int strStr2(String haystack, String needle) {

        int m = haystack.length(), n = needle.length();
        if (m < n) {
            return -1;
        }
        for (int i = 0; i <= m - n; ++i) {
            int j = 0;
            for (j = 0; j < n; ++j) {
                if (haystack.charAt(i + j) != needle.charAt(j)){
                    break;
                }
            }
            if (j == n) {
                return i;
            }
        }
        return -1;
    }

    /**
     * 然后就可以用正则表达式啦  当然正则这个包在leetcode是通不过的哈
     * @param haystack
     * @param needle
     * @return
     */
    public static int strStr3(String haystack, String needle){
        Pattern p = Pattern.compile(needle);
        Matcher m = p.matcher(haystack);

        while(m.find()) {
           return m.start();
        }
        return -1;
    }



    public static void main(String[] args) {
        System.out.println(strStr3("hello","lp"));
    }
}

转载于:https://my.oschina.net/u/2277632/blog/1591971

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值