LeetCode28 -- Implement strStr ()

Source: Internet
Author: User

LeetCode28 -- Implement strStr ()

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.

Difficulty coefficient:

Easy

Implementation
Bool isSub (char * str, char * sub) {int len = strlen (sub); for (int I = 0; I <len; ++ I) {if (str [I]! = Sub [I]) return false;} return true;} int strStr (char * haystack, char * needle) {int hlen = strlen (haystack ); int nlen = strlen (needle); if (hlen = nlen & isSub (haystack, needle) {return 0 ;}for (int I = 0; I 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.