Hactoberfest2021-Cpp
Hactoberfest2021-Cpp copied to clipboard
Add Jump Search in CPP
Jump Search is a searching algorithm for sorted arrays. The basic idea is to check fewer elements (than linear search) by jumping ahead by fixed steps or skipping some elements in place of searching all elements.