web-dev-qa-db-ja.com

Java:配列内の最高値を見つける

何らかの理由で、1つ(11.3)だけを印刷しようとすると、このコードは配列の最高値に対して3つの値を出力します。誰かがなぜこれをしているのか私に説明してもらえますか?

ありがとう。

import Java.util.Scanner;

public class Slide24
{
    public static void main (String [] args)
    {
        Scanner in = new Scanner(System.in);

        double[] decMax = {-2.8, -8.8, 2.3, 7.9, 4.1, -1.4, 11.3, 10.4,
            8.9, 8.1, 5.8, 5.9, 7.8, 4.9, 5.7, -0.9, -0.4, 7.3, 8.3, 6.5, 9.2,
            3.5, 3, 1.1, 6.5, 5.1, -1.2, -5.1, 2, 5.2, 2.1};

        double total = 0, avgMax = 0;

        for (int counter = 0; counter < decMax.length; counter++)
        {
         total += decMax[counter];
        }

        avgMax = total / decMax.length;

        System.out.printf("%s %2.2f\n", "The average maximum temperature for December was: ", avgMax);

        //finds the highest value
        double max = decMax[0];

        for (int counter = 1; counter < decMax.length; counter++)
        {
         if (decMax[counter] > max)
         {
          max = decMax[counter];
          System.out.println("The highest maximum for the December is: " + max);
         }

        }        
    }
}
23
HelloWorld

現在の最大値よりも大きい番号が見つかるたびに番号が出力されます(この場合はたまたま3回発生します)。印刷をforループの外側に移動すると、うまくいくはずです。

for (int counter = 1; counter < decMax.length; counter++)
{
     if (decMax[counter] > max)
     {
      max = decMax[counter];
     }
}

System.out.println("The highest maximum for the December is: " + max);
36
Toji

配列から最高値(最大値)または最低値(最小値)を見つけるには、これが正しい方向を示します。以下は、プリミティブ配列から最高値を取得するためのサンプルコードです。

方法1:

public int maxValue(int array[]){
  List<Integer> list = new ArrayList<Integer>();
  for (int i = 0; i < array.length; i++) {
    list.add(array[i]);
  }
 return Collections.max(list);

}

最小値を取得するには、次を使用できます

Collections.min(リスト)

方法2:

public int maxValue(int array[]){
  int max = Arrays.stream(array).max().getAsInt();
  return max;
}

これで、次の行が機能するはずです。

System.out.println( "12月の最大値は次のとおりです。" + maxValue(decMax)); 
24
sifho

最大値を印刷する必要がありますafterすべてをスキャンしました:

for (int counter = 1; counter < decMax.length; counter++)
{
    if (decMax[counter] > max)
    {
        max = decMax[counter];
        // not here: System.out.println("The highest maximum for the December is: " + max);
    }
}  
System.out.println("The highest maximum for the December is: " + max);
8
Michael Haren

配列に関してさまざまなアクションを実行するための最も迅速で簡単な方法を探している場合、Collectionsクラスの使用は非常に役立ちます(ドキュメントは https://docs.Oracle.com/javase/7/ docs/api/Java/util/Collections.html )、アクションの範囲は最大値、最小値、ソート、逆順などの検索から.

コレクションを使用して配列から最大値を見つける簡単な方法:

Double[] decMax = {-2.8, -8.8, 2.3, 7.9, 4.1, -1.4, 11.3, 10.4, 8.9, 8.1, 5.8, 5.9, 7.8, 4.9, 5.7, -0.9, -0.4, 7.3, 8.3, 6.5, 9.2, 3.5, 3.0, 1.1, 6.5, 5.1, -1.2, -5.1, 2.0, 5.2, 2.1};
List<Double> a = new ArrayList<Double>(Arrays.asList(decMax));
System.out.println("The highest maximum for the December is: " + Collections.max(a));

最大値を見つけることに似ている最小値を見つけることに興味がある場合:

System.out.println(Collections.min(a));

リストを並べ替える最も簡単な行:

Collections.sort(a);

または、Arraysクラスを使用して配列をソートすることもできます。

Arrays.sort(decMax);

ただし、Arraysクラスには最大値を直接参照するメソッドがなく、並べ替えて最後のインデックスを参照することが最大値ですが、上記の2つのメソッドによる並べ替えにはO(n log n)の複雑さがあります。

5
christylam1

他の人によって提案されたものと同じ、それを行うよりクリーンな方法に言及するだけです:

int max = decMax[0];
for(int i=1;i<decMax.length;i++)
    max = Math.max(decMax[i],max);
System.out.println("The Maximum value is : " + max);
5
Sahil Chhabra

ゼロ番目の要素を残りの要素と比較するだけで、含まれる最後の最大値を出力します。この場合、同じ問題が発生しています。各要素を比較するには、次のように値を交換する必要があります。

double max = decMax[0];
    for (int counter = 1; counter < decMax.length; counter++){
        if(max<decMax[i]){
            max=decMax[i]; //swapping
            decMax[i]=decMax[0];
        }
    }
    System.out.println("The max value is "+ max);

これがあなたを助けることを願っています

1
Ijhar Ansari

配列の最大値を持つためのより短いソリューション:

double max = Arrays.stream(decMax).max(Double::compareTo).get();
1
freedev

for()ループにprint()ステートメントがあります。1回だけ印刷されるように、後でなければなりません。現在の方法では、maxが変更されるたびにmaxが出力されます。

1
twolfe18

配列を受け入れ、その中の最大値を見つける関数を使用できます。他のデータ型も受け入れられるように汎用化しました

public static <T extends Comparable<T>> T findMax(T[] array){       
    T max = array[0];
    for(T data: array){
        if(data.compareTo(max)>0)
            max =data;                
    }
    return max;
}
0
Shimrod

私が見つけた最も簡単な方法は、すべてのAndroidバージョンをサポートしています

Arrays.sort(series1Numbers);

int maxSeries = Integer.parseInt(String.valueOf(series1Numbers[series1Numbers.length-1]));
0
Amir De
import Java.util.*;
class main9 //Find the smallest and 2lagest and  ascending and descending order of  elements in array//
{
    public static void main(String args[])
    {
        Scanner sc=new Scanner(System.in);
        System.out.println("Enter the array range");
        int no=sc.nextInt();
        System.out.println("Enter the array element");
        int a[]=new int[no];
        int i;
        for(i=0;i<no;i++)
        {
            a[i]=sc.nextInt();
        }
        Arrays.sort(a);
        int s=a[0];
        int l=a[a.length-1];
        int m=a[a.length-2];
        System.out.println("Smallest no is="+s);
        System.out.println("lagest 2 numbers are=");
        System.out.println(l);
        System.out.println(m);
        System.out.println("Array in ascending:");
        for(i=0;i<no;i++)
        {
            System.out.println(a[i]);
        }
        System.out.println("Array in descending:");
        for(i=a.length-1;i>=0;i--)
        {
            System.out.println(a[i]);
        }
    }
}
void FindMax()
{
    int lessonNum;

    System.out.print("Enter your lesson numbers : ");
    lessonNum = input.nextInt();
    int[] numbers = new int[lessonNum];
    for (int i = 0; i < numbers.length; i++)
    {
        System.out.print("Please enter " + (i + 1) + " number : ");
        numbers[i] = input.nextInt();
    }
    double max = numbers[0];
    for (int i = 1; i < numbers.length; i++)
    {
        if (numbers[i] > max)
        {
            max = numbers[i];
        }
    }
    System.out.println("Maximum number is : " + max);
}
0
Ahmad Fayazi

このように書くことができます。

import Java.util.Scanner;
class   BigNoArray{

    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter how many array element");
        int n=sc.nextInt();
        int[] ar= new int[n];
        System.out.println("enter "+n+" values");
        for(int i=0;i<ar.length;i++){
            ar[i]=sc.nextInt();
        }
        int fbig=ar[0];
        int sbig=ar[1];
        int tbig=ar[3];
            for(int i=1;i<ar.length;i++){
                if(fbig<ar[i]){
                    sbig=fbig;
                    fbig=ar[i];
                }
                else if(sbig<ar[i]&&ar[i]!=fbig){
                    sbig=ar[i];
                }
                else if(tbig<ar[i]&&ar[i]!=fbig){
                    tbig=ar[i];
                }
            }
        System.out.println("first big number is "+fbig);
        System.out.println("second big number is "+sbig);
        System.out.println("third big number is "+tbig);
    }
}
0
Vivek Shah

Java事前定義ライブラリを使用したくない場合は、以下が

最も簡単な方法

   public class Test {

    public static void main(String[] args) {
        double[] decMax = {-2.8, -8.8, 2.3, 7.9, 4.1, -1.4, 11.3, 10.4,
            8.9, 8.1, 5.8, 5.9, 7.8, 4.9, 5.7, -0.9, -0.4, 7.3, 8.3, 6.5, 9.2,
            3.5, 3, 1.1, 6.5, 5.1, -1.2, -5.1, 2, 5.2, 2.1};

        double maxx = decMax[0];

        for (int i = 0; i < decMax.length; i++) {
            if (maxx < decMax[i]) {
                maxx = decMax[i];
            }
        }
        System.out.println(maxx);

    }
}
0
Java Strikers

コレクションを使用しない簡単な方法

public void findHighestNoInArray() {
        int[] a = {1,2,6,8,9};
        int large = a[0];
            for(int num : a) {
                if(large < num) {
                    large = num;
                }
            }
            System.out.println("Large number is "+large+"");
        }
0
arunkumar sambu