Skip to content

Files

Latest commit

aQuaaQua
aQua
and
aQua
Aug 1, 2017
829b8fc · Aug 1, 2017

History

History

0028.implement-strstr

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 1, 2017
Aug 1, 2017
Aug 1, 2017

题目

Implement strStr().

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

解题思路

依次对比查找

总结