1、
有一个已经排序的数组(升序),数组中可能有正数、负数或0,求数组中元素的绝对值最小的数,要求,不能用顺序比较的方法(复杂度需要小于O(n)),可以使用任何语言实现
例如,数组{-20,-13,-4, 6, 77,200} ,绝对值最小的是-4。
算法实现的基本思路
找到负数和正数的分界点,如果正好是0就是它了,如果是正数,再和左面相邻的负数绝对值比较,如果是负数,取取绝对值与右面正数比较。还要考虑数组只有正数或负数的情况。
import java.util.Arrays; import java.util.HashMap; import java.util.Map; public class MinAbsoluteValue { //http://www.blogjava.net/nokiaguy/archive/2013/01/30/394920.html 方法 /** * 三种情况: * 1、有正负数 * 2、只有正数 * 3、只有负数 * * 找到正负数临界点,比较绝对值大小即可 */ private static int getMinAbsoluteValue(int[] source) { int index = 0; int result = 0; int startIndex = 0; int endIndex = source.length - 1; // 计算负数和正数分界点 while(true) { // 计算当前的索引 index = startIndex + (endIndex - startIndex) / 2; int s = (endIndex - startIndex)/2; result = source[index]; // 如果等于0,就直接返回了,0肯定是绝对值最小的 if(result==0) { return 0; } // 如果值大于0,处理当前位置左侧区域,因为负数肯定在左侧 else if(result > 0) { if(index == 0) { break; } if(source[index-1] >0) endIndex = index - 1; else if(source[index-1] ==0) return 0; else break; } // 如果小于0,处理当前位置右侧的区域,因为正数肯定在右侧的位置 else { if(index == endIndex) break; if(source[index + 1] < 0) startIndex = index + 1; else if(source[index + 1] == 0) return 0; else break; } } // 根据分界点计算绝对值最小的数 if(source[index] > 0) { if(index == 0 || source[index] < Math.abs(source[index-1])) result= source[index]; else result = source[index-1]; } else { if(index == source.length - 1 || Math.abs(source[index]) < source[index+1]) result= source[index]; else result = source[index+1]; } return result; } public static void main(String[] args) throws Exception { int[] arr1 = new int[]{-23,-22,-3,-2,1,2,3,5,20,120}; int[] arr2 = new int[]{-23,-22,-12,-6,-4}; int[] arr3 = new int[]{16,22,33,55,66,333}; int value = getMinAbsoluteValue(arr1); System.out.println(value); value = getMinAbsoluteValue(arr2); System.out.println(value); value = getMinAbsoluteValue(arr3); System.out.println(value); System.out.println("---------------------------"); //自己方法 int value2 = getAbsValue(arr1); System.out.println(value2); value2 = getAbsValue(arr2); System.out.println(value2); value2 = getAbsValue(arr3); System.out.println(value2); } //自己方法 public static int getAbsValue(int[] array){ if(array == null || array.length == 0) return 0; Map sortMap = new HashMap(); int [] tmpArray = new int[array.length]; for(int i = 0;i<array.length;i++){ int element = array[i]; sortMap.put( Math.abs(element),element); tmpArray[i] = Math.abs(element); } Arrays.sort(tmpArray); return Integer.parseInt(sortMap.get(tmpArray[0]).toString()); } }
。
相关推荐
百度面试题: 1. **字符串倒序**:在C语言中,可以通过指针操作实现原地反转。 2. **memmove函数**:实现内存拷贝,需考虑重叠区域的处理。 3. **蚂蚁问题**:可以使用贪心算法或深度优先搜索找到所有蚂蚁相遇的...
#### 百度三道面试题详解 **24. 字符串逆序** - **题目描述**:实现一个函数,将输入的字符串在原串上倒序后返回。 - **解决方案**:使用双指针技术,一个指针从头部开始,另一个从尾部开始,交换字符直至两指针...
【百度面试题解析】 24. 字符串倒序:直接交换字符串首尾,然后向中间移动两个指针进行交换,直至相遇。 25. 实现`memmove`函数:可以使用双指针,一个从源地址开始复制,一个从目标地址开始,同时向中间移动。 ...
### C语言面试题解析 #### Static关键字的用途 Static关键字在C语言中有两个主要用途: 1. **限制变量的作用域**:当在一个函数内部声明static变量时,这个变量就变成了一个只在该函数内部可见的全局变量,即使函数...
总的来说,BAT(百度、阿里巴巴、腾讯)等大公司的机器学习面试题集中往往涵盖了理论知识和工程实践,通过这些面试题可以检验面试者在机器学习各个方面的知识深度和广度。对以上提及的知识点,面试者需要有扎实的...
8. 如何求数组中绝对值最小的数 9. 如何求数组连续最大和 字符串篇 1. 如何求一个字符串的所有排列 2. 如何求两个字符串的最长公共子串 3. 如何判断两个字符串是否为换位字符串 4. 如何判断两个字符串的包含关系 5...
第一篇 面试题 ................................................................................ 8 1.1. 简介 ................................................................................................