Develop
2015.06.26 16:35
[c] 이진 탐색 두 가지 코드 (재귀/반복)
조회 수 2021 댓글 0
첨부 '1' |
---|
이진 탐색에 대한 두 가지 코드.
# 실행 조건
- 유일한 값들이어야 함 (중복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; }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
985 | Develop |
[ios] Swift 4 Dictionary 사용하기
![]() |
hooni | 2018.11.29 | 4105 |
984 | System/OS |
SSH Passwordless Login Using SSH Keygen in 5 Easy Steps
![]() |
hooni | 2019.11.22 | 4112 |
983 | Develop | [vim] vim 명령으로  문자 제거하기 (remove 65279 bomb) | hooni | 2021.02.03 | 4119 |
982 | Develop | [js] Array.splice() 설명 | hooni | 2014.04.24 | 4132 |
981 | Develop | [io] Apple Watch, Today Extension 앱ID 설정 | hooni | 2016.04.20 | 4161 |
980 | Develop | [ios] iOS 사운드 관련 프레임워크 | hooni | 2014.04.18 | 4174 |
979 | Develop |
[ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법
![]() |
hooni | 2017.03.29 | 4196 |
978 | PPT |
[ppt] Macro for board game 발표자료 (@Team Study 2013.01.18)
1 ![]() |
hooni | 2015.07.22 | 4212 |
977 | Develop |
[ios] 커스텀 폰트 사용하기 (Custom Fonts)
![]() |
hooni | 2014.04.30 | 4232 |
976 | Develop |
[ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)
![]() |
hooni | 2016.03.23 | 4245 |
975 | System/OS | 콘솔에서 패스워드 걸린 zip 압축하는 명령 | hooni | 2018.03.02 | 4259 |
974 | Develop |
알고리즘 성능분석
![]() |
hooni | 2014.06.24 | 4260 |