首页 > 其他分享 >局部最小问题

局部最小问题

时间:2022-10-29 14:37:19浏览次数:74  
标签:System arr int 局部 最小 maxValue 问题 length out

package class01;

/**
 * 局部最小问题
 * <p>
 * 对于一个数组,使用二分法的前提,一定是这个数组整体有序吗?
 * 答:不是。局部最小问题就是反例。
 */
public class Code07_BSAwesome {
    public static int getLessIndex(int[] arr) {
        if (arr == null || arr.length == 0) {
            return -1;
        }
        if (arr.length == 1 || arr[0] < arr[1]) {
            return 0;
        }
        if (arr[arr.length - 1] < arr[arr.length - 2]) {
            return arr.length - 1;
        }
        int L = 1;
        int R = arr.length - 2;
        while (L <= R) {
            int mid = L + ((R - L) >> 1);
            if (arr[mid] > arr[mid - 1]) {
                R = mid - 1;
            } else if (arr[mid] > arr[mid + 1]) {
                L = mid + 1;
            } else {
                return mid;
            }
        }
        System.out.println("===============================");
        return L;
    }

    public static void main(String[] args) {
        int maxSize = 50;
        int maxValue = 30;
        int testTimes = 10000;
        boolean flag = true;
        for (int i = 0; i < testTimes; i++) {
            int[] arr1 = generateRandomArr2(maxSize, maxValue);

            int num = getLessIndex(arr1);
            if (!test(arr1, num)) {
                printArr(arr1);
                for (int index = 0; index < arr1.length; index++) {
                    System.out.print(index + "\t");
                }
                System.out.println();
                System.out.println("num = " + num);
                flag = false;
                break;
            }
        }
        //至少打印一次
        int[] arr1 = generateRandomArr2(maxSize, maxValue);
        printArr(arr1);
        for (int index = 0; index < arr1.length; index++) {
            System.out.print(index + "\t");
        }
        System.out.println();
        int num = getLessIndex(arr1);
        System.out.println("num = " + num);
        System.out.println(flag ? "nice!" : "oops!");
    }

    public static int[] generateRandomArr(int maxSize, int maxValue) {
        int[] arr = new int[(int) (Math.random() * maxSize)];
        for (int i = 0; i < arr.length; i++) {
            arr[i] = (int) (Math.random() * maxValue) - (int) (Math.random() * maxValue);
        }
        return arr;
    }

    public static void printArr(int[] arr) {
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + "\t");
        }
        System.out.println();
    }

    //生成的随机数组中的数字,相邻不相等。
    public static int[] generateRandomArr2(int maxSize, int maxValue) {
        int[] arr = new int[(int) (Math.random() * maxSize) + 1];
        arr[0] = (int) (Math.random() * maxValue) - (int) (Math.random() * maxValue);
        for (int i = 1; i < arr.length; i++) {
            do {
                arr[i] = (int) (Math.random() * maxValue) - (int) (Math.random() * maxValue);
            } while (arr[i] == arr[i - 1]);
        }
        return arr;
    }

    //用于测试,num位置的数,是不是局部最小。
    public static boolean test(int[] arr, int num) {
        if (arr.length <= 1) {
            return true;
        }
        if (num == 0) {
            return arr[0] < arr[1];
        }
        if (num == arr.length - 1) {
            return arr[num] < arr[num - 1];
        }
        return (arr[num] < arr[num - 1] && arr[num] < arr[num + 1]);
    }

}

 

标签:System,arr,int,局部,最小,maxValue,问题,length,out
From: https://www.cnblogs.com/TheFloorIsNotTooHot/p/16838654.html

相关文章

  • 期中问题解决
    要哭了,刚刚写完总结去查找错误,不到五分钟就找到了,能把分儿给我加上嘛1、保证数据库主键的唯一性------实现两个不同页面的跳转在添加语句里面加入ignore关键字,然后将函数......
  • 最小生成树
    如下图是个带权值的网结构图。要用最小的成本将所有元素连接起来,即n个顶点,用n-1条边把连通图连接起来,并且使得权值的和最小。定义:把构造连通网的最小代价生成树称为最小生......
  • SpringBoot 解决跨域问题代码
     packagecom.example.demo.gs;importorg.springframework.context.annotation.Configuration;importjavax.servlet.*;importjavax.servlet.annotation.WebFilter......
  • VC6项目升级到VS2013时的问题
    errorC2065:“DOMDocument30”:未声明的标识符描述:m_pXMLDoc.CreateInstance(__uuidof(DOMDocument30));//这句报错解决:添加命名空间,MSXML2::DOMDocument30errorC......
  • Spring Boot系列之使用问题总结
    RabbitMQ报错AmqpException:Nomethodfoundforclassjava.lang.Integer在使用springboot集成RabbitMQ的时候,选择使用springboot提供的starter,spring-boot-starter-a......
  • 使用数据结构中的队列解决舞伴搭配问题
    ​ (一)问题描述某班有m个女生,n个男生(m不等于n,男女生人数和不能小于20),现要举办一个舞会,男女生分别编号坐在舞池两边的椅子上等待。每曲开始时,依次从男生和女生中各出一......
  • 【P8179】【EZEC-11】Tyres(背包问题,决策单调性,分治)
    和这道题的题面很像,但是做法不同。题面:有\(n\)家商店,第\(i\)家商店一共可以卖出\(m_i\)件商品,其中第\(j\)件商品购买所需的代价为\(a_{i,j}\)。特别地,对于第\(......
  • 动态规划-746. 使用最小花费爬楼梯
    题目描述给你一个整数数组cost,其中cost[i]是从楼梯第i个台阶向上爬需要支付的费用。一旦你支付此费用,即可选择向上爬一个或者两个台阶。你可以选择从下标为0或下......
  • Ubuntu中Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend)问
    Ubuntu中Unabletoacquirethedpkgfrontendlock(/var/lib/dpkg/lock-frontend)问题的解决按顺序执行直到sudodpkg--configure-a结束就可以了......
  • 阿里前端面试问到的vue问题
    Vue.set的实现原理给对应和数组本身都增加了dep属性当给对象新增不存在的属性则触发对象依赖的watcher去更新当修改数组索引时,我们调用数组本身的splice去更新数组(数组......