diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2017-10-28 19:19:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-28 19:19:59 +0300 |
commit | ce1d290a5f557d683a6ccf4cf637d54b012df151 (patch) | |
tree | 96f6c7d42daab29af628fba5e3cc54fef00ea3a8 | |
parent | 65e4c2efb67eb22254e3e6a7f9456f4a5cce8bed (diff) | |
parent | 5f5dd74260efd76af39262c1608cd3c3e14f5576 (diff) |
Merge pull request #2976 from milenaduo/patch-4
[dynamic-programming/pt-br] - Better reading
-rw-r--r-- | pt-br/dynamic-programming-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/dynamic-programming-pt.html.markdown b/pt-br/dynamic-programming-pt.html.markdown index 8de9bee6..45b52790 100644 --- a/pt-br/dynamic-programming-pt.html.markdown +++ b/pt-br/dynamic-programming-pt.html.markdown @@ -51,7 +51,7 @@ array antecedente e uma variável como maiorSequenciasAteAgora e seu índice ajudariam a poupar muito tempo. Um conceito similar poderia ser aplicado ao procurar o maior caminho em um grafo acíclico dirigido. ---------------------------------------------------------------------------- + ``` for i=0 to n-1 LS[i]=1 @@ -62,7 +62,7 @@ grafo acíclico dirigido. if (largest < LS[i]) ``` -### Alguns Problemas Famosos de Programação Dinâmica +## Alguns Problemas Famosos de Programação Dinâmica ``` Floyd Warshall Algorithm - Tutorial and C Program source code:http://www.thelearningpoint.net/computer-science/algorithms-all-to-all-shortest-paths-in-graphs---floyd-warshall-algorithm-with-c-program-source-code |