剑指Offer——滑动窗口的最大值

1、题目描述

  给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。例如,如果输入数组{2,3,4,2,6,2,5,1}及滑动窗口的大小3,那么一共存在6个滑动窗口,他们的最大值分别为{4,4,6,6,6,5}; 针对数组{2,3,4,2,6,2,5,1}的滑动窗口有以下6个: {[2,3,4],2,6,2,5,1}, {2,[3,4,2],6,2,5,1}, {2,3,[4,2,6],2,5,1}, {2,3,4,[2,6,2],5,1}, {2,3,4,2,[6,2,5],1}, {2,3,4,2,6,[2,5,1]}。

2、代码实现

package com.baozi.offer;

import java.util.ArrayList;
import java.util.Collections;

/**
 * 给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。
 * 例如,如果输入数组{2,3,4,2,6,2,5,1}及滑动窗口的大小3,那么一共存在6个滑动窗口,
 * 他们的最大值分别为{4,4,6,6,6,5}; 针对数组{2,3,4,2,6,2,5,1}的滑动窗口有以下6个:
 * {[2,3,4],2,6,2,5,1}, {2,[3,4,2],6,2,5,1}, {2,3,[4,2,6],2,5,1},
 * {2,3,4,[2,6,2],5,1}, {2,3,4,2,[6,2,5],1}, {2,3,4,2,6,[2,5,1]}。
 *
 * @author BaoZi
 * @create 2019-07-15-10:09
 */
public class Offer31 {
    public static void main(String[] args) {
        Offer31 offer31 = new Offer31();
        int[] array = new int[]{2, 3, 4, 2, 6, 2, 5, 1};
        ArrayList<Integer> arrayList = offer31.maxInWindows(array, 3);
        for (int i = 0; i < arrayList.size(); i++) {
            System.out.println(arrayList.get(i) + "  ");
        }
    }

    public ArrayList<Integer> maxInWindows(int[] num, int size) {
        ArrayList<Integer> list_temp = new ArrayList<>();
        ArrayList<Integer> list = new ArrayList<>();
        if (size <= 0 || size > num.length) {
            return list;
        }
        for (int i = 0; i < num.length - size + 1; i++) {
            for (int index = i; index < size + i; index++) {
                list_temp.add(num[index]);
            }
            Collections.sort(list_temp);
            list.add(list_temp.get(size - 1));
            list_temp.clear();
        }
        return list;
    }

}

  

posted @ 2019-07-15 11:07  包子的百草园  阅读(118)  评论(0编辑  收藏  举报