| ID | Skill_name |
|---|---|
| 3.1.3.1 | I can understand and explain how the linear search algorithm works. |
| 3.1.3.2 | I can understand and explain how the binary search algorithm works. |
| 3.1.3.3 | I can compare and contrast linear and binary search algorithms. |
In computer science, binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.
Recent Comments
Teacher Date: 2025-10-27
Guest