0
package test;

   /* Read numbers from a text file and store them into an array; then
  sort the array and display it on the screen. Save the sorted array
in sorted.txt. */ 

import java.util.Scanner;
import java.io.*;

public class Test {

 static public void main(String[] args) throws IOException {

    /* Initialize the input stream reading from a text file */

Scanner inputFile; 
    inputFile = new Scanner(new File("arrayex1.txt"));

    /* Initialize the output stream writing into a text file */

PrintWriter outputFile;
outputFile = new PrintWriter(new FileWriter("sorted.txt"));

    /* Declare the array */

int[] numbers = new int[50];
int index = 0;

    int temp, smallest, smallest_index;

    /* Read the first number */
    numbers[index] = inputFile.nextInt();

    while (numbers[index] != 0) {

        index++;
        numbers[index] = inputFile.nextInt();

    }

    /* Sort the array using the selection sort method; the inner 
       loop finds the smallest unsorted number, and the outer
       loop places it in the right place. */ 

    for (int i = 0; i < index - 1; i++) {

        smallest = numbers[i];
        smallest_index = i;

        for (int j = i + 1; j < index; j++) {

        if (numbers[j] < smallest) { 
                smallest = numbers[j];
                smallest_index = j;
            }
        }

        /* If needed switch numbers[i] and numbers[smallest_index] */

        if (numbers[i] != numbers[smallest_index]) {

            temp = numbers[i];
            numbers[i] = numbers[smallest_index];
            numbers[smallest_index] = temp;
        }
    }

    /* Display the sorted array and also save the result in sorted.txt*/

    for (int i = 0; i < index; i++) {          
    System.out.print (numbers[i] + " ");
        outputFile.print (numbers[i] + " ");
    }

    inputFile.close();
    outputFile.close();

 }
  }

エラーの取得は次のとおりです。

Exception in thread "main" java.util.NoSuchElementException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at test.Test.main(Test.java:37)

助けと解決策をいただければ幸いです。前もって感謝します。

4

2 に答える 2

1

Scanner.hasNext()にジャンプするのではなく、を呼び出して、スキャナーに次の要素があるかどうかを常に確認してくださいScanner.Next()

スキャナーが最後の要素に到達し、他に表示する人がいないため、エラーが表示されます。

于 2012-12-09T18:41:36.360 に答える
0

まず第一に、毎回ソートする数字の数が同じになることはないと推測しているため、整数の ArrayList を使用することをお勧めします。

メソッドの読み取りは次のとおりで、インポートが暗示されます。

    private static ArrayList<Integer> nums;
    public static void readIn() throws FileNotFoundException{
        Scanner sc = new Scanner(new File("file.txt"));
        boolean error = false;
        while(sc.hasNext()&&!error){
            try{
                nums.add(Integer.parseInt(sc.next()));
            }catch(NumberFormatException e){
                e.printStackTrace();
                error = true;
            }
        }
    }

そして、これはおそらく最も効率的なソートのコードです。

        int[] numbers = (int[]) nums.toArray();
        Arrays.sort(numbers);
        System.out.println(Arrays.toString(numbers)); 
于 2014-06-23T17:46:15.717 に答える