码迷,mamicode.com
首页 > 编程语言 > 详细

《程序员代码面试指南》第八章 数组和矩阵问题 最长的可整合子数组的长度

时间:2018-05-07 22:53:19      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:代码   bre   apt   package   com   static   creat   ret   面试   

题目

最长的可整合子数组的长度
package com.lizhouwei.chapter8;

import java.util.HashSet;
import java.util.Set;

/**
 * @Description: 最长的可整合子数组的长度
 * @Author: lizhouwei
 * @CreateDate: 2018/5/7 21:02
 * @Modify by:
 * @ModifyDate:
 */
public class Chapter8_8 {

    public int getLIL(int[] arr) {
        Set<Integer> set = new HashSet<>();
        int max = 0;
        int min = 0;
        int res = 0;
        for (int i = 0; i < arr.length; i++) {
            max = Integer.MIN_VALUE;
            min = Integer.MAX_VALUE;
            for (int j = i; j < arr.length; j++) {
                if (set.contains(arr[j])) {
                    break;
                }
                set.add(arr[j]);
                max = Math.max(max, arr[j]);
                min = Math.min(min, arr[j]);
                if (max - min == j - i) {
                    res = Math.max(res, j - i + 1);
                }
            }
            set.clear();
        }
        return res;
    }
    //测试
    public static void main(String[] args) {
        Chapter8_8 chapter = new Chapter8_8();
        int[] arr = {5, 5, 3, 2, 6, 4, 3};
        System.out.println("数组 arr = {5, 5, 3, 2, 6, 4, 3}中");
        System.out.println("最长的可整合子数组的长度为:" + chapter.getLIL(arr));
    }
}

结果

技术分享图片

《程序员代码面试指南》第八章 数组和矩阵问题 最长的可整合子数组的长度

标签:代码   bre   apt   package   com   static   creat   ret   面试   

原文地址:https://www.cnblogs.com/lizhouwei/p/9005075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!