码迷,mamicode.com
首页 > 其他好文 > 详细

28. Implement strStr()

时间:2017-06-11 22:20:22      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   字符   index   har   pre   returns   bre   经典   题目   

Implement strStr().

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

非常容易的一道题目,注意各种特殊情况,先列举出corner case,再进行编码。学习参考经典实现。

这种关于字符串操作类的题目在面试时必须能够倒背如流。

int strStr(char* haystack, char* needle) {
    if (haystack == NULL || needle == NULL)
        return -1;
        
    for (int i = 0; ; ++i) {
        for (int j = 0; ; ++j) {
            if (needle[j] == \0)
                return i;
            else {
                if (haystack[i+j] == \0)
                    return -1;
                if (haystack[i+j] != needle[j])
                    break;
            }
        }
    }
}

 

28. Implement strStr()

标签:blog   字符   index   har   pre   returns   bre   经典   题目   

原文地址:http://www.cnblogs.com/naivecoder/p/6986434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!