博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
28. Implement strStr()
阅读量:5234 次
发布时间:2019-06-14

本文共 894 字,大约阅读时间需要 2 分钟。

Implement strStr().

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

Update (2014-11-02):

The signature of the function had been updated to return the index instead of the pointer. If you still see your function signature returns a char * or String, please click the reload button  to reset your code definition.

暴力法,可以用KMP解法

public class Solution {

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

转载于:https://www.cnblogs.com/shini/p/4534977.html

你可能感兴趣的文章
Apache Common-IO 使用
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>
使用shared memory 计算矩阵乘法 (其实并没有加速多少)
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
Fragment
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
使用C#交互快速生成代码!
查看>>
UVA11374 Airport Express
查看>>