Contents

조회 수 840 댓글 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. [js] 모바일 스크롤 방지(해제)

    Date2015.04.14 CategoryDevelop Byhooni Views1590
    Read More
  2. [js] e.stopPropagation() VS e.preventDefault ()

    Date2015.04.14 CategoryDevelop Byhooni Views810
    Read More
  3. [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법

    Date2015.04.26 CategoryDevelop Byhooni Views2451
    Read More
  4. [ios] GPS 이용 상태 확인

    Date2015.04.27 CategoryDevelop Byhooni Views1295
    Read More
  5. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

    Date2015.04.28 CategoryDevelop Byhooni Views2046
    Read More
  6. Aspect Oriented Programming in Objective-C

    Date2015.05.18 CategoryDevelop Byhooni Views674
    Read More
  7. [ppt] iOS 플라랩#04(2015.06.19) 발표 자료

    Date2015.06.04 CategoryDevelop Byhooni Views636
    Read More
  8. [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search)

    Date2015.06.26 CategoryDevelop Byhooni Views1011
    Read More
  9. [c] 이진 탐색 두 가지 코드 (재귀/반복)

    Date2015.06.26 CategoryDevelop Byhooni Views840
    Read More
  10. [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ

    Date2015.06.26 CategoryDevelop Byhooni Views654
    Read More
  11. 정리할 자료.

    Date2015.07.02 CategoryDevelop Byhooni Views677
    Read More
  12. [c] 이진트리/트리 순회법 코드(전위/중위/후위)

    Date2015.07.02 CategoryDevelop Byhooni Views20920
    Read More
Board Pagination Prev 1 ... 55 56 57 58 59 60 61 62 63 64 ... 71 Next
/ 71