摘要: 1 public class Solution { 2 public int strStr(String haystack, String needle) { 3 int big = haystack.length(); 4 int sub = needle.length(); 5 if(big== 阅读全文
posted @ 2017-05-06 21:44 落叶已归根 阅读(137) 评论(0) 推荐(0) 编辑