fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. // この関数を実装する
  5. int binary_search(int a[], int n, int x) {
  6. int left = 0; // 探索範囲の左端
  7. int right = n - 1; // 探索範囲の右端
  8.  
  9. while (left <= right) { // 探索範囲が有効な間繰り返す
  10. int mid = (left + right) / 2; // 中央のインデックス
  11.  
  12. if (a[mid] == x) {
  13. return mid; // 見つかった場合、そのインデックスを返す
  14. }
  15. else if (a[mid] < x) {
  16. left = mid + 1; // 中央の値よりも大きい場合、右側に絞り込む
  17. }
  18. else {
  19. right = mid - 1; // 中央の値よりも小さい場合、左側に絞り込む
  20. }
  21. }
  22.  
  23. return -1; // 見つからなかった場合は-1を返す
  24. }
  25.  
  26. int main(void) {
  27. int n, x, i;
  28. int *a;
  29. int ans = -1;
  30.  
  31. scanf("%d %d", &n, &x);
  32. a = (int*)malloc(sizeof(int) * n);
  33.  
  34. if (a == NULL) {
  35. printf("ERROR\n");
  36. return -1;
  37. }
  38.  
  39.  
  40. for (i = 0; i < n; i++) {
  41. scanf("%d", &a[i]);
  42. }
  43.  
  44. ans = binary_search(a, n, x);
  45.  
  46. if (ans != -1) {
  47. printf("a[%d] = %d\n", ans, a[ans]);
  48. } else {
  49. printf("not found\n");
  50. }
  51.  
  52. free(a);
  53. return 0;
  54. }
  55.  
Success #stdin #stdout 0.01s 5288KB
stdin
12 5

1 2 3 4 5 8 9 13 16 21 25 27
stdout
a[4] = 5