Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adicionar implementação do algoritmo de Busca Interpolada (Interpolation Search) #6

Open
2 tasks
mateushsx opened this issue Sep 30, 2024 · 0 comments
Open
2 tasks
Labels
feature Implementation of new algorithm

Comments

@mateushsx
Copy link
Owner

A Busca Interpolada (Interpolation Search) é uma melhoria da busca binária, aplicável a arrays ordenados. Ela usa a posição do valor de busca para melhorar a eficiência. É particularmente eficiente quando os elementos do array estão uniformemente distribuídos.

Tarefas:

  • Implementar o algoritmo em algorithms/searching/interpolation-search/index.js.
  • Criar a documentação do algoritmo em algorithms/searching/interpolation-search/README.md, incluindo:
    • Descrição do funcionamento do algoritmo.
    • Exemplo de código com uma breve explicação.
    • Análise de complexidade temporal e espacial.

Complexidade:

  • Tempo: O(log log n) no melhor caso; O(n) no pior caso.
  • Espaço: O(1).
@mateushsx mateushsx added the feature Implementation of new algorithm label Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Implementation of new algorithm
Projects
None yet
Development

No branches or pull requests

1 participant