Binary Search

Get introduced to Binary Search, which is the most widely used Divide and Conquer technique.

We'll cover the following...

Introduction

Binary Search is an efficient algorithm for finding an item from a sorted list of items. A simple approach is to do a ...