Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from storopoli/storopoli/fix-O-notation
Browse files Browse the repository at this point in the history
fix: O notation extra parentheses
  • Loading branch information
storopoli authored Aug 15, 2024
2 parents 1e3d5a8 + 3dccced commit ad6a446
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slides.typ
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ Blank space can be filled with vertical spaces like #v(1fr).

#pagebreak()

- $(O(n^2))$ (complexidade *quadrática*):
- $O(n^2)$ (complexidade *quadrática*):
- Percorrer uma matriz
- Algoritmo de ordenação _Bubble Sort_
- Algoritmo de ordenação _Insertion Sort_
- $(O(n^3))$ (complexidade *cúbica*):
- $O(n^3)$ (complexidade *cúbica*):
- Multiplicação de matrizes (abordagem ingênua)
- $(O(n!))$ (complexidade *fatorial*):
- $O(n!)$ (complexidade *fatorial*):
- Solução do problema do caixeiro-viajante
- Gerar todas as permutações de uma lista
]
Expand Down

0 comments on commit ad6a446

Please sign in to comment.