LeetCode做题总结:字符串(2)

一.实现strStr() 

LeetCode做题总结:字符串(2)_第1张图片

class Solution {
    public int strStr(String haystack, String needle) {
       return haystack.indexOf(needle);
	}
}

 二.报数LeetCode做题总结:字符串(2)_第2张图片

class Solution {
    public String countAndSay(int n){
		int i=1;
		String res="1";
		while(i

三.最长公共前缀 

LeetCode做题总结:字符串(2)_第3张图片

class Solution {
    public String longestCommonPrefix(String[] strs) {
       String s="";
         if(strs == null ) {
            return null;
        }
        if(strs.length == 1) {
            return strs[0];
        }
          if(strs.length==0)  return s;
       long  minLength=strs[0].length();
       
       for(int i=0;i

 

你可能感兴趣的:(数据结构)