永发信息网

下列代码求出一个二进制串中连续的1或连续的0出现的最大次数。请完善缺失代码。 如 s="101100111100011";

答案:2  悬赏:50  手机版
解决时间 2021-02-02 22:30
  • 提问者网友:缘字诀
  • 2021-02-02 06:55
public static int getmaxcontinuity(String s)
{
int max_1=0;
int max_0=0;
int n_1=0; //当前1连续出现的次数;
int n_0=0; //当前0连续出现的此时;
for(int i=0;i<s.length();i++)

if(s.charAt(i)=='0')
{ n_0++;
_________;}
else {
n_1++;
______________;}
if(n_1>max_1)max_1=n_1;
if(n_0>max_0)max_0=n_0;

return max_1>max_0?max_1:max_0;
}
最佳答案
  • 五星知识达人网友:污到你湿
  • 2021-02-02 07:53
public class T5 {

public static int getMaxContinuity(String s)
{
int max_1 = 0;
int max_0 = 0;
int n_1 = 0; // 当前1连续的次数
int n_0 = 0; // 当前0连续的次数

for(int i=0; i<s.length(); i++)
{
if(s.charAt(i)=='0')
{
n_0++;
n_1=0;
}
else
{
n_1++;
n_0=0;
}

if(n_1 > max_1) max_1 = n_1;
if(n_0 > max_0) max_0 = n_0;
}

return max_1>max_0? max_1 : max_0;
}
public static void main(String[] args) {
System.out.println(T5.getMaxContinuity( "01111000001"));

}

}
全部回答
  • 1楼网友:鱼忧
  • 2021-02-02 08:01
任务占坑
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯