0

JAVAの宿題

ここで私が間違っていることについて、誰かが私にいくつかの指針を与えることができますか? ありがとう。

16. 演習 11(f)、キーの値を見つけるための配列のバイナリ検索の再帰的なソリューションをコーディングします。

public class BinarySearch {
    public static void main(String[] args) {
        public static int BinarySearch(int[] sorted, int first, int upto, int key) {
            if (first < upto) {
                int mid = first + (upto - first) / 2;  // Compute mid point.
                if (key < sorted[mid]) {
                    return BinarySearch(sorted, first, mid, key);
                } else if (key > sorted[mid]) {
                    return BinarySearch(sorted, mid+1, upto , key);
                } else {
                    return mid;   // Found it.
                }
            }
            return -(first + 1);  // Failed to find key
        }
    }
}
4

1 に答える 1

2

問題は、別のメソッド内でメソッドを定義していることです:

public static void main(String[] args) {
    public static int BinarySearch(int[] sorted, int first, int upto, int key) {

BinarySearchメソッドをメソッドの外に移動するだけmainです。

public static void main(String[] args) {
    //content of this method
}

public static int BinarySearch(int[] sorted, int first, int upto, int key) {
    //content of this other method
}
于 2013-04-09T16:11:35.153 に答える