Here you can find the source of minMax(int[] values)
Parameter | Description |
---|---|
values | Array to find the min and max from |
public static int[] minMax(int[] values)
//package com.java2s; /**//from ww w .ja v a2 s. c o m * Copyright (C) 2014 Aniruddh Fichadia * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * If you use or enhance the code, please let me know using the provided author information or via * email Ani.Fichadia@gmail.com. */ public class Main { /** * Calculates the min and max values of an array * * @param values Array to find the min and max from * * @return Size 2 array in format [min, max] */ public static int[] minMax(int[] values) { int min = values[0]; int max = values[0]; int len = values.length; for (int i = 1; i < len; i++) { int val = values[i]; if (val > max) { max = val; } if (val < min) { min = val; } } return new int[] { min, max }; } /** * Calculates the min and max values of an array * * @param values Array to find the min and max from * * @return Size 2 array in format [min, max] */ public static double[] minMax(double[] values) { double min = values[0]; double max = values[0]; int len = values.length; for (int i = 1; i < len; i++) { double val = values[i]; if (val > max) { max = val; } if (val < min) { min = val; } } return new double[] { min, max }; } }