算法-leecode164-最大间距
package com.jiucaiyuan.net.question; import java.util.Arrays; /** * 给定一个无序的数组 nums,返回 数组在排序之后,相邻元素之间最大的差值 。如果数组元素个数小于 2,则返回 0 。 * <p> * 您必须编写一个在「线性时间」内运行并使用「线性额外空间」的算法。 * <p> * 示例1: * <p> * 输入: nums = [3,6,9,1] * 输出: 3 * 解释: 排序后的数组是 [1,3,6,9], 其中相邻元素 (3,6) 和 (6,9) 之间都存在最大差值 3。 * 示例2: * <p> * 输入: nums = [10] * 输出: 0 * 解释: 数组元素个数小于 2,因此返回 0。 * * @Author jiucaiyuan 2022/4/13 23:41 * @mail services@jiucaiyuan.net */ class MaximumGapInOrderedArray { public static int maximumGap(int[] nums) { //特殊情况判断 if (nums.length < 2) { return 0; } if (nums.length == 2) { return Math.abs(nums[0] - nums[1]); } //找到最大值 获取最多的位数 int max = Arrays.stream(nums).max().getAsInt(); int length = String.valueOf(max).length(); nums = radixSort(nums, length); int gap = 0; for (int i = nums.length - 1; i > 0; i--) { int tmp = nums[i] - nums[i - 1]; if (tmp > gap) { gap = tmp; } } return gap; } private static int[] radixSort(int[] nums, int length) { //在每一位上进行排序 for (int i = 1; i <= length; i++) { nums = countingSort(nums, i); } return nums; } //计数排序 private static int[] countingSort(int[] nums, int b) { int[] countArray = new int[10]; for (int i = 0; i < nums.length; i++) { countArray[getValue(nums[i], b)] += 1; } for (int i = 1; i < countArray.length; i++) { countArray[i] += countArray[i - 1]; } int[] res = new int[nums.length]; for (int i = nums.length - 1; i >= 0; i--) { int val = getValue(nums[i], b); res[countArray[val] - 1] = nums[i]; countArray[val] -= 1; } return res; } //获取整形num的第b个数字 从右往左数 private static int getValue(int num, int b) { return num / (int) (Math.pow(10, b - 1)) % 10; } public static void main(String[] args) { int[] nums = {1, 5, 2, 7, 4, 9, 2, 14}; System.out.println(maximumGap(nums)); } }
« 算法-leecode46-全排列
|
JVM垃圾回收»
日历
个人资料
diaba 寻求合作请留言或联系mail: services@jiucaiyuan.net
链接
最新文章
存档
- 2024年10月(1)
- 2024年8月(2)
- 2024年6月(4)
- 2024年5月(1)
- 2023年7月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(11)
- 2022年5月(6)
- 2022年4月(33)
- 2022年3月(26)
- 2021年3月(1)
- 2020年9月(2)
- 2018年8月(1)
- 2018年3月(1)
- 2017年3月(3)
- 2017年2月(6)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(1)
- 2016年9月(3)
- 2016年8月(4)
- 2016年7月(3)
- 2016年6月(4)
- 2016年5月(7)
- 2016年4月(9)
- 2016年3月(4)
- 2016年2月(5)
- 2016年1月(17)
- 2015年12月(15)
- 2015年11月(12)
- 2015年10月(6)
- 2015年9月(11)
- 2015年8月(8)
分类
热门文章
- SpringMVC:Null ModelAndView returned to DispatcherServlet with name 'applicationContext': assuming HandlerAdapter completed request handling
- Mac-删除卸载GlobalProtect
- java.lang.SecurityException: JCE cannot authenticate the provider BC
- MyBatis-Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}
- Idea之支持lombok编译
标签
最新评论
- logisqykyk
Javassist分析、编辑和创建jav... - xxedgtb
Redis—常见参数配置 - 韭菜园 ... - wdgpjxydo
SpringMVC:Null Model... - rllzzwocp
Mysql存储引擎MyISAM和Inno... - dpkgmbfjh
SpringMVC:Null Model... - tzklbzpj
SpringMVC:Null Model... - bqwrhszmo
MyBatis-Improper inl... - 乐谱吧
good非常好 - diaba
@diaba:应该说是“时间的度量依据”... - diaba
如果速度增加接近光速、等于光速、甚至大于...
最新微语
- 从今天起,做一个幸福的人。喂马,砍柴,(思想)周游世界
2022-03-21 23:31
- 2022.03.02 23:37:59
2022-03-02 23:38
- 几近崩溃后,找到解决方法,总是那么豁然开朗!所以遇到问题要坚持!
2018-07-18 10:49
- 2018年关键字“走心”
2018-03-19 16:07
- 保护好自己最大的方法是让自己更强大,不要柔弱的像一只绵羊一样,得谁巴拉,就谁巴拉!
2017-12-20 10:24
发表评论: