• 对数器是什么?简单理解下


    对数器

    对数器是什么?

    对数器是一种测试工具,它采用的是大量随机数据的方式来对同一个问题的两种不同算法进行测试,进行算法合理及正确性判断。相对于线上测试它更加繁琐,但是准确性更高。

    制作一个简单的对数器

    就拿排序算法为例,我们制作很多的随机数组来判断排序算法是否正确。

    import java.lang.reflect.Array;
    import java.util.Arrays;
    
    /**
     * @author `dongxu.kwb`
     * @date `2022/8/29`
     */
    public class test {
        public static void main(String[] args) {
            int testTime = 50000; //测试的次数
            int maxSize = 100; //长度 [0 ~ 100]
            int maxValue = 100; // [-100 ~ 100]
            boolean succeed = true; //测试是否成功
            for (int i = 0; i < testTime; i++) { //测试开始
                int[] arr1 = newRandomArray(maxSize, maxValue); //生成两个相同的随机数组
                int[] arr2 = copyArray(arr1);
                insertSort(arr1);
                Arrays.sort(arr2);
                if (!isEqual(arr1, arr2)) { //比较两个数组是否相同
                    succeed = false;
                    break;
                }
            }
            System.out.println(succeed ? "恭喜你!两种算法的结果相同。" : "两种算法结果不相同,请进行检查。");
        }
    
        /**
         * 生成随机数组的方法
         */
    
        public static int[] newRandomArray(int maxSize, int maxValue){
    
            //生成[0~n-1]的所有整数  (int)(Math.random() * n)
    
            int[] arr = new int[(int) ((maxSize + 1) * Math.random())]; //随机数组大小
            for (int i = 0; i < arr.length; i++) { //为数组随即赋值
                arr[i] = (int) ((maxValue + 1) * Math.random()) - (int) (maxValue * Math.random());
            }
            return arr;
        }
    
        /**
         * 复制数组的方法
         * @param arr
         */
    
        public static int[] copyArray(int[] arr) {
            if (arr == null) {
                return null;
            }
            int[] res = new int[arr.length];
            for (int i = 0; i < arr.length; i++) {
                res[i] = arr[i];
            }
            return res;
        }
    
        /**
         * 判断两个数组是否相等的方法
         * @param arr1
         * @param arr2
         * @return
         */
    
        public static boolean isEqual(int[] arr1, int[] arr2) {
            if ((arr1 == null && arr2 != null) || (arr1 != null && arr2 == null)) return false;
            if (arr1 == null && arr2 == null) return true;
            if (arr1.length != arr2.length) return false;
            for (int i = 0; i < arr1.length; i++) {
                if (arr1[i] != arr2[i]) return false;
            }
            return true;
        }
        public static void insertSort(int[] arr) {
            if (arr == null || arr.length < 2) {
                return;
            }
            for (int i = 1; i < arr.length; i++) {
                for (int j = i; j > 0 && arr[j] < arr[j - 1]; j--) {
                    swap(arr, j, j-1);
                }
            }
        }
        public static void swap(int[] arr, int a, int b) {
            int temp = arr[a];
            arr[a] = arr[b];
            arr[b]= temp;
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
  • 相关阅读:
    指针难点——数组指针、指针数组、函数指针、指针函数详解
    Linux:mongodb数据库基础操作(3.4版本)
    【Unity3D】资源管理
    66.C++多态与虚函数
    .NET 6学习笔记(7)——ASP.NET Core通过配置文件启用HTTPS
    外贸网站被谷歌收录的方法
    shell中[[]]与[],=、==和-eq的辨析
    TypeScript入门指南
    flink 1.14 编译
    Roson的Qt之旅 #120 QNetworkCacheMetaData详细介绍
  • 原文地址:https://blog.csdn.net/abaidaye/article/details/126588473