LeetCode28. Implement strStr()

来源:互联网 发布:js正则匹配网址 编辑:程序博客网 时间:2024/05/21 12:51

LeetCode28. Implement strStr()

题目:

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

题目分析:直接用string的find函数

代码:
class Solution {  public:      int strStr(string haystack, string needle) {          int tmp = haystack.find(needle);          if (tmp == string::npos)            return -1;        return tmp;    }  };  

原创粉丝点击