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

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

Implement .

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 子串匹配,并返回子串的位置。 最传统的方法:
class Solution {public:     int strStr(string haystack, string needle) {        int m = haystack.length(); //字串的总长度        int n = needle.length();   //要匹配的子串长度        if (!n) return 0;          //如果要匹配的子串长度为0,返回0;        for (int i = 0; i < m - n + 1; i++) {            int j = 0;            for (; j < n; j++)                if (haystack[i + j] != needle[j])                    break;           //某个字符不相等的情况            if (j == n) return i;    //成功找到        }        return -1;                   //没有找到子串,返回-1    }};

 

 这里没有考虑用KMP算法

转载于:https://www.cnblogs.com/hozhangel/p/7835157.html

你可能感兴趣的文章
了解node.js
查看>>
想做移动开发,先看看别人怎么做
查看>>
Eclipse相关集锦
查看>>
虚拟化架构中小型机构通用虚拟化架构
查看>>
继承条款effecitve c++ 条款41-45
查看>>
HTML+CSS学习笔记(九)
查看>>
Java泛型的基本使用
查看>>
1076 Wifi密码 (15 分)
查看>>
rsync
查看>>
noip模拟赛 党
查看>>
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>
移动设备显示尺寸大全 CSS3媒体查询
查看>>
图片等比例缩放及图片上下剧中
查看>>
【转载】Linux screen 命令详解
查看>>
background-clip,background-origin
查看>>
Android 高级UI设计笔记12:ImageSwitcher图片切换器
查看>>
Blog文章待看
查看>>
【Linux】ping命令详解
查看>>