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)
- Host: GitHub
- URL: https://github.com/ryancasf/algoritmos
- Owner: RyanCasf
- Created: 2021-07-11T16:02:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T12:37:29.000Z (about 2 years ago)
- Last Synced: 2025-02-28T08:32:52.002Z (over 1 year ago)
- Topics: algorithm-challenges, algorithms, java
- Language: Java
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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