为了账号安全,请及时绑定邮箱和手机立即绑定

检查布尔数组中所有值的快速方法

检查布尔数组中所有值的快速方法

海绵宝宝撒 2023-07-28 16:03:50
我刚刚开始使用 java,在做网络练习时,我创建了一个长度为“n”的布尔数组。之后,我决定创建一个 while 循环,当布尔数组的所有条目都为 true 时停止。有没有办法快速做到这一点?我想到的唯一方法是放置“while(!(array[0] && array[1]... && array[n]),但这需要大量工作。有什么想法吗?
查看完整描述

1 回答

?
德玛西亚99

TA贡献1770条经验 获得超3个赞

只需浏览整个列表并检查真假


public static void main(String[] args) {

    boolean[] array = new boolean[] {false,true,true,false,true};

    int index = 0;

    while(!checkBooleanArray(array)) { //check

        array[index] = true;           //do something about it

        index++;                       //increasing the index and then check again

    }                                  //you obviously have to change the the part of "do something" and "increasing index" to match your wishes

    System.out.println(Arrays.toString(array));

}


public static boolean checkBooleanArray(boolean[] array) {

    for (boolean b : array)

        if (!b)

            return false;

    return true;

}

另一种更快的方法是在更改数组的一个布尔值时尝试对数组进行排序,然后仅检查数组中的第一个或最后一个布尔值


查看完整回答
反对 回复 2023-07-28
  • 1 回答
  • 0 关注
  • 91 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信