二分探索

Calendar Clock iconCalendar Clock icon

search

# 目次

二分探索は末端条件にバグを仕込まないように実装するのが重要.
もれなくすべての要素をチェックし、かつ無限ループに陥らないように.

# ポイント

  1. left=0, right=v.size()-1 を両端としてその中間点 mid = (left+right) / 2 を取る.
  2. midで領域を2分割する. leftからmidまでの左領域と、mid+1からrightまで右領域の2つ。
  3. ``targetv[mid]`より小さければ次は左領域を、大きければ右領域を探す.
  4. すべての探索が終了するとleftrightが入れ替わるのでそれを終了条件とする.

# コード

// C++ 14
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <unordered_map>
#include <math.h>

#define ll long long
#define Int int
#define loop(x, start, end) for(Int x = start; x < end; x++)
#define loopdown(x, start, end) for(int x = start; x > end; x--)
#define rep(n) for(int x = 0; x < n; x++)
#define span(a,x,y) a.begin()+x,a.begin()+y
#define span_all(a) a.begin(),a.end()
#define len(x) (x.size())
#define last(x) (*(x.end()-1))

using namespace std;


inline bool search(vector<ll> v, ll target) {
    if (target < v[0] || v[v.size()-1] < target) return false;
    
    ll left = 0, right = v.size(), mid;
    while (left < right) {
        mid = (left + right) / 2;
        if (v[mid] == target) return true;
        else if (v[mid] < target) left = mid+1;
        else right = mid;
    }
    
    return false;
}

リモートフリーランス。ウェブサービス、スマホアプリエンジニア。
東アジアを拠点に世界を移動しながら活動してます!

お仕事のご依頼・お問い合わせはこちら

コメント