Java 데이터 구조 및 알고리즘 - 2점 찾기

1787 단어
2점 찾기:
이분찾기는 반절찾기라고도 하는데 이것은 효율이 비교적 높은 찾기 방법이다.
2분 찾기 요구: 선형표는 질서표, 즉 표의 결점은 키워드에 따라 질서정연하고 벡터를 표의 저장 구조로 해야 한다.순서표가 점차적으로 질서정연하게 설치되어 있어도 무방하다.
2 분 검색 반복 및 비반복 Java 구현:
package com.algorithm.search;

import com.algorithm.sort.BasicSort;

public class BinarySearch {

    public static void main(String[] args) {
        int[] a={3,4,5,1,98,45,34,27,49,6,78};
        int low=0;
        int high=a.length-1;
        int elem=45;
        BasicSort b=new BasicSort();
        b.basicSort(a);
        for(int num:a){
            System.out.print(" "+num);
        }
//        binarySearch(a,elem,low,high);
        directbinarySearch(a,elem,low,high);
    }

    /**
     * 
     */
    public static int binarySearch(int[] a,int elem,int low,int high) {
        if (low <=high) {
            int mid = (low + high) / 2;
            if (a[mid] == elem) {
                System.out.println(" :" + mid);
                return mid;
            }
            if (a[mid] > elem) {
                return binarySearch(a, elem, low, mid - 1);
            }
            if (a[mid] < elem) {
                return binarySearch(a, elem, mid + 1, high);
            }
        }
        return -1;
    }
    /**
     *  
     */
    public static int directbinarySearch(int[] a,int elem,int low,int high) {
        while(low<=high){
            int mid = (low + high) / 2;
            if(a[mid] == elem){
                System.out.println(" :" + mid);
                return mid;
            }
            if (a[mid] > elem) {
                high=mid-1;
            }
            if(a[mid] < elem){
                low=mid+1;
            }

        }
        return -1;
    }
}
 : 1 3 4 5 6 27 34 45 49 78 98 :7

좋은 웹페이지 즐겨찾기