An open API service indexing awesome lists of open source software.

https://github.com/ryancasf/algoritmos

Applications and Theories of Computational Algorithm. (CLRS)
https://github.com/ryancasf/algoritmos

algorithm-challenges algorithms java

Last synced: about 2 months ago
JSON representation

Applications and Theories of Computational Algorithm. (CLRS)

Awesome Lists containing this project

README

          

# Algoritmo
"Antes de existirem computadores, havia algoritmos. Mas, agora que temos computadores, há ainda mais algoritmos, e os algoritmos estão no coração da computação"


Sort | Descrição | Big O
:--------- | :------ | :------:
Bozo|Altera a posição de N itens aleatoriamente dentro do array até que atinjam a ordenação X sequência.
N = 2 && X = DESC|Infinite
Bubble||O(n^2)
Merge|John von Neumann|O(n*log(n))
Quick|Tony Hoare|O(n^2)


## Mais detalhes
Para ver mais acesse o [sumário](DIRECTORY.md).




FONTE: Introduction to Algorithms - CLRS
Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein