首页 > 其他 > 详细

【leetcode】Implement strStr() (easy)

时间:2015-05-22 23:52:50      阅读:290      评论:0      收藏:0      [点我收藏+]

Implement strStr().

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

 

思路:

注意,在for循环中条件有计算得到的负数时, 一定要把计算括起来转换为int, 否则会默认转换为uchar 负数就会被误认为是一个很大的数字。

for(int i = 0; i < int(1 - 2); ++i)

 

实现很常规:

int strStr(string haystack, string needle) {
        for(int i = 0; i <= int(haystack.size() - needle.size()); ++i)
        {
            int j;
            for(j = 0; j < needle.size() && haystack[i + j] == needle[j]; ++j);
            if(j == needle.size())
                return i;
        }
        return -1;
    }

 

【leetcode】Implement strStr() (easy)

原文:http://www.cnblogs.com/dplearning/p/4523437.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!