赞
踩
class Solution {
public int maxPower(String s) {
int count=1;//记录当前子字符串的长度
int max=1;//记录历史最长子字符串的长度
char chars[]=s.toCharArray();
for (int i = 1; i < chars.length; i++) {
if(chars[i]==chars[i-1]){//如果后一个字符等于前一个字符
count++;
max=Math.max(count,max);//将历史子字符串的最大长度与当前字符串的长度进行比较并取最大值
}else{
count=1;//如果后一个字符不等于前一个字符,就把count重置为1
}
}
System.out.println(max);
return max;
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。