C 프로그래밍 언어는 두 가지 검색 기술을 제공합니다.
여기서 다음과 같은 세 가지 상황이 발생할 수 있습니다.
가운데 요소가 키워드와 일치하면 여기서 검색이 성공적으로 종료됩니다.
가운데 요소가 키워드보다 크면 검색이 계속됩니다. 왼쪽 파티션.
가운데 요소가 키워드보다 작을 경우 오른쪽 파티션에서 검색이 수행됩니다.
Input (i/p) - 정렬되지 않은 요소, 키워드 목록입니다.
출력(o/p) -
key = 20 mid = (low +high) /2
다음은 이진 탐색을 이용한 배열 C 프로그램:
#include<stdio.h> int main(){ int a[50], n, i, key, flag = 0, low, mid, high; printf("enter the no: of elements:"); scanf ("%d",&n); printf("enter the elements:"); for(i=0; i<n; i++) scanf( "%d", &a[i]); printf("enter a key element:"); scanf ("%d", &key); low = 0; high = n-1; while (low<= high ){ mid = (low + high) /2; if (a[mid] == key){ flag = 1; break; } else{ if (a[mid] > key) high = mid-1; else low = mid+1; } } if (flag == 1) printf ("search is successful"); else printf("search is unsuccessful"); return 0; }
위 프로그램이 실행되면 다음과 같은 결과가 나옵니다. −
Run 1: enter the no: of elements:5 enter the elements: 12 34 11 56 67 enter a key element:45 search is unsuccessful Run 2: enter the no: of elements:3 enter the elements: 12 34 56 enter a key element:34 search is successful
다음 C 프로그램에서 이진을 사용하여 배열의 최소 요소를 찾습니다. search −
#include<stdio.h> void Bmin(int *a, int i, int n){ int j, temp; temp = a[i]; j = 2 * i; while (j <= n){ if (j < n && a[j+1] > a[j]) j = j + 1; if (temp < a[j]) break; else if (temp >= a[j]){ a[j / 2] = a[j]; j = 2 * j; } } a[j/2] = temp; return; } int binarysearchmin(int *a,int n){ int i; for(i = n/2; i >= 1; i--){ Bmin(a,i,n); } return a[1]; } int main(){ int n, i, x, min; int a[20]; printf("Enter no of elements in an array</p><p>"); scanf("%d", &n); printf("</p><p>Enter %d elements: ", n); for (i = 1; i <= n; i++){ scanf("%d", &a[i]); } min = binarysearchmin(a, n); printf("\minimum element in an array is : %d", min); return 0; }
위 프로그램이 실행되면 다음과 같은 결과가 나온다 −
Enter no of elements in an array 5 Enter 5 elements: 12 23 34 45 56 minimum element in an array is: 12
위 내용은 C 언어에서 이진 검색 알고리즘을 사용하여 배열에서 가장 작은 요소를 찾는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!