美文网首页
学习_02_遍历数组

学习_02_遍历数组

作者: 时光不说话 | 来源:发表于2020-04-04 21:17 被阅读0次

    遍历一个等长的数组,并判断数组是否包含输入的整数。
    方式1:数组都等长

    public class Solution {
        public boolean Find(int target, int [][] array) {
            for(int x = 0; x < array.length; x++){
                for(int y = 0; y < array[x].length; y++){
                    if(array[x][y] == target){
                        return true;
                    }
                }
            }
            return false;
        }
    }
    

    方式2:数组不等长也可以用

    public class Solution {
        public boolean Find(int target, int [][] array) {
            for(int[] cels : array){
                for (int cel : cels){
                    if (cel == target){
                        return true;
                    }
                }
            }
            return false;
        }
    }
    

    相关文章

      网友评论

          本文标题:学习_02_遍历数组

          本文链接:https://www.haomeiwen.com/subject/vkmsphtx.html