You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Busca Exponencial (Exponential Search) é um algoritmo que combina a busca binária com a pesquisa exponencial. É útil em listas que são infinitas ou muito grandes. O algoritmo encontra o intervalo onde o elemento pode estar e, em seguida, usa busca binária para localizá-lo.
Tarefas:
Implementar o algoritmo em algorithms/searching/exponential-search/index.js.
Criar a documentação do algoritmo em algorithms/searching/exponential-search/README.md, incluindo: