28. Implement strStr()

public int strStr( String haystack, String needle) {   for ( int i = 0 ; ; i++) {     for ( int j = 0 ; ; j++) {       if (j == needle.length()) return i;       if (i + j == haystack.length()) return
相關文章
相關標籤/搜索