欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

最长的可整合子数组的长度

程序员文章站 2022-03-01 17:17:14
...

最长的可整合子数组的长度
我使用了最笨的暴力方法,根据题目描述直接得到答案。

import java.util.Scanner;
public class Test{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int count=1;
        int [] a = new int [N];
        for(int i=0 ; i<N; i++){
            a[i] = sc.nextInt();
        }
        sc.close();
        for(int i=0 ; i<N-1; i++){
           int max = a[0];
            for(int j=1 ;j<N;j++){
                if(max < a[j]){
                    max = a[j];
                }
                else{
                    a[j-1] = a[j];
                    a[j] = max;
                }
            }
        }
        int max = 1;
        for(int k=0; k<N; k++){
            if(count>max){
                max = count;
            }
            count = 1;
        for(int i=k ; i<N ; i++){
            for(int j=i+1 ;j<N;){
                if((Math.abs(a[i]-a[j]))==1){
                  count+=1;
                    break;
                }
                else {
                    i = N;
                    break;
                }
            }
        }
        }
        System.out.println(max);
    }
}
相关标签: java 算法