LintCode 13---字符串查找

Posted cnmoti

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 13---字符串查找相关的知识,希望对你有一定的参考价值。

public class Solution {
    /**
     * @param source: 
     * @param target: 
     * @return: return the index
     */
    public int strStr(String source, String target) {
        // Write your code here
            return source.indexOf(target);
    }
}

 

以上是关于LintCode 13---字符串查找的主要内容,如果未能解决你的问题,请参考以下文章

字符串字符串查找 ( 蛮力算法 )

LintCode-查找斐波纳契数列中第 N 个数

Lintcode13 strStr solution 题解

String字符串查找

lintcode 刷题:457 经典二分查找问题

[LintCode] 字符串问题