Day 9: Jump Search (Square Root Search)
1. Introduction
Jump Search is a searching algorithm for sorted arrays.It works by jumping ahead by fixed steps (instead of checking every element like Linear Search) and then doing a Linear Search in a smaller block where the target might be.
It’s o...
codewithgift.hashnode.dev2 min read