阿里笔试的一道算法题(2)

/**
    * 测试
    */
    public static void main(String[] args) throws Exception {
        int a[] = { 4, 1, 5, 1, 3, 2, 1, 3, 1, 2, 3, 1, 1 };
        System.out.println(getStepsResult(a, 1));
    }

/**
    * 自定义参数检查异常
    *
    * @author ZOUHENG
    */
    private static class CheckParamException extends Exception {
        private static final long serialVersionUID = -5470930382435803070L;

public CheckParamException(String message) {
            super(message);
        }
    }
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/c109ec14b7f06ffffbe923bdf225f270.html