首页 > 代码库 > 求n的元素的最大最小值
求n的元素的最大最小值
public static int[] maxMin(int a[]) { int[] res = new int[2]; int len = a.length; if (len <= 0) { return res; } res[0] = res[1] = a[0]; if (len % 2 == 0) { for (int i = 0; i < len - 1; i += 2) { if (a[i] > a[i + 1]) { int tem = a[i]; a[i] = a[i + 1]; a[i + 1] = tem; } } for (int i = 0; i < len; i += 2) { if (res[0] > a[i]) { res[0] = a[i]; } } for (int i = 1; i < len; i += 2) { if (res[1] < a[i]) { res[1] = a[i]; } } } else { for (int i = 0; i < len - 1 - 1; i += 2) { if (a[i] > a[i + 1]) { int tem = a[i]; a[i] = a[i + 1]; a[i + 1] = tem; } } for (int i = 0; i < len - 1; i += 2) { if (res[0] > a[i]) { res[0] = a[i]; } } for (int i = 1; i < len - 1; i += 2) { if (res[1] < a[i]) { res[1] = a[i]; } } if (res[0] > a[len - 1]) { res[0] = a[len - 1]; } else if (res[1] < a[len - 1]) { res[1] = a[len - 1]; } } return res; }
两两比较的方法,大的在右边,小的在左边,然后在分别找最大最小值,n是偶数奇数要注意。
求n的元素的最大最小值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。