中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java怎么判斷一個元素是否在數組中

小億
131
2024-01-30 16:43:02
欄目: 編程語言

在Java中,可以使用Arrays類中的binarySearch()方法或者自己寫一個循環來判斷一個元素是否在數組中。

使用binarySearch()方法需要先對數組進行排序,然后調用該方法,它會返回要查找的元素在數組中的索引。如果返回的索引大于等于0,則表示該元素在數組中存在。否則,表示該元素不在數組中。

示例代碼如下所示:

import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        int[] arr = {1, 2, 3, 4, 5};
        int target = 3;

        // 先對數組進行排序
        Arrays.sort(arr);

        // 使用binarySearch()方法判斷元素是否存在
        int index = Arrays.binarySearch(arr, target);
        if (index >= 0){
            System.out.println(target + " 在數組中存在");
        } else {
            System.out.println(target + " 不在數組中存在");
        }
    }
}

另外,也可以自己寫一個循環來判斷元素是否在數組中。代碼如下所示:

public class Main {
    public static void main(String[] args) {
        int[] arr = {1, 2, 3, 4, 5};
        int target = 3;
        boolean exists = false;

        // 使用循環判斷元素是否存在
        for (int i : arr) {
            if (i == target) {
                exists = true;
                break;
            }
        }

        if (exists) {
            System.out.println(target + " 在數組中存在");
        } else {
            System.out.println(target + " 不在數組中存在");
        }
    }
}

0
沽源县| 浦县| 巴中市| 新巴尔虎右旗| 西藏| 花莲县| 鄄城县| 留坝县| 灵璧县| 澄江县| 柳河县| 卢氏县| 宁强县| 满洲里市| 蒲江县| 乌苏市| 门头沟区| 吴桥县| 晋中市| 丰台区| 新绛县| 河东区| 渭源县| 兴文县| 垦利县| 嫩江县| 沁水县| 安多县| 襄樊市| 屯留县| 镇原县| 平潭县| 奇台县| 宁陵县| 陵川县| 兴山县| 甘肃省| 濮阳市| 博客| 时尚| 诸城市|