Contents

조회 수 2023 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

이진 탐색에 대한 두 가지 코드.


# 실행 조건

- 유일한 값들이어야 함 (중복x).

- 오름차순 정렬 후 실행해야 함.


# 구현 방식

- 재귀함수 (bsearch_recursive)

- while 반복문 (bsearch_loop)


#include <stdio.h>
#include "bsearch.c"

void bbsort(int *arr, int length);
int bsearch_recursive(int *arr, int begin, int end, int target);
int bsearch_loop(int *arr, int target, int length);

int main( )
{
    int arr[] = {11, 9, 1, 5, 15, 3, 7, 13};
    int target = 7;
    int result;
    int length;
    
    length = sizeof(arr)/sizeof(int);
    
    bbsort(arr, length);
    
    //By Recursive
    result = bsearch_recursive(arr, 0, length-1, target);
    
    //By Loop
    result = bsearch_loop(arr, length, target);
    
    if(result == -1)
    {
        printf("Not Found.
");
    }
    else
    {
        for( int i=0 ; i<length ; ++i )
        {
            printf( "%d ", arr[i] );
        }
        printf("
Found Index :  %d.
", result);
    }
    
    return 0;
}


?

  1. 도메인 관련 솔루션 분석할 거.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views7975
    Read More
  2. [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7974
    Read More
  3. [js] 윤동이가 만든 영어 학습(?) 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views7974
    Read More
  4. [php] 논문 관리 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7973
    Read More
  5. [c] 프로세스간의 통신(파이프)

    Date2003.04.23 CategoryDevelop Byhooni Views7973
    Read More
  6. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views7969
    Read More
  7. [js] 숫자만 입력하게 하는 자바스크립트

    Date2013.04.23 CategoryDevelop Byhooni Views7969
    Read More
  8. 라이브러리에 대한 설명 (static & dynamic library)

    Date2013.04.23 CategoryDevelop Byhooni Views7966
    Read More
  9. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views7961
    Read More
  10. [c++] mfc로 만든 인테리어 수납 시스템(2D기반 설계)

    Date2013.04.23 CategoryDevelop Byhooni Views7959
    Read More
  11. [c++] template 사용예

    Date2003.04.23 CategoryDevelop Byhooni Views7959
    Read More
  12. [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7948
    Read More
Board Pagination Prev 1 ... 64 65 66 67 68 69 70 71 72 73 ... 99 Next
/ 99