C言語で二分探索アルゴリズムのコードを書く方法は何ですか。

以下は基本的なC言語での二分探索アルゴリズムのサンプルコードです:

#include <stdio.h>

int binarySearch(int arr[], int left, int right, int target) {
    while (left <= right) {
        int mid = left + (right - left) / 2;
        
        if (arr[mid] == target) {
            return mid;
        } else if (arr[mid] < target) {
            left = mid + 1;
        } else {
            right = mid - 1;
        }
    }
    
    return -1; // 表示未找到
}

int main() {
    int arr[] = {1, 3, 5, 7, 9, 11, 13, 15};
    int n = sizeof(arr) / sizeof(arr[0]);
    int target = 7;
    
    int result = binarySearch(arr, 0, n - 1, target);
    
    if (result == -1) {
        printf("Element not found\n");
    } else {
        printf("Element found at index %d\n", result);
    }
    
    return 0;
}

このサンプルコードでは、binarySearch関数がソート済みの配列、配列の左端と右端、そして目標要素を引数として受け取り、目標要素のインデックスを返します。main関数では、ソート済みの配列arrを宣言し、その後にbinarySearch関数を呼び出して目標要素7を検索します。目標要素が見つかれば、そのインデックスを出力し、見つからなければ「Element not found」と出力します。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds