Skip to content

Commit de1cc0b

Browse files
caldasluantrekhleb
andauthoredDec 17, 2020
Translate pt-BR (trekhleb#386)
Co-authored-by: Oleksii Trekhleb <[email protected]>
1 parent d87502b commit de1cc0b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎README.pt-BR.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ os dados.
3535
* `B` [Lista Encadeada (Linked List)](src/data-structures/linked-list/README.pt-BR.md)
3636
* `B` [Lista Duplamente Ligada (Doubly Linked List)](src/data-structures/doubly-linked-list/README.pt-BR.md)
3737
* `B` [Fila (Queue)](src/data-structures/queue/README.pt-BR.md)
38-
* `B` [Stack](src/data-structures/stack/README.pt-BR.md)
38+
* `B` [Pilha (Stack)](src/data-structures/stack/README.pt-BR.md)
3939
* `B` [Tabela de Hash (Hash Table)](src/data-structures/hash-table/README.pt-BR.md)
4040
* `B` [Heap](src/data-structures/heap/README.pt-BR.md)
4141
* `B` [Fila de Prioridade (Priority Queue)](src/data-structures/priority-queue/README.pt-BR.md)
@@ -46,7 +46,7 @@ os dados.
4646
* `A` [Árvore Vermelha-Preta (Red-Black Tree)](src/data-structures/tree/red-black-tree/README.pt-BR.md)
4747
* `A` [Árvore de Segmento (Segment Tree)](src/data-structures/tree/segment-tree/README.pt-BR.md) - com exemplos de consultas min / max / sum range
4848
* `A` [Árvore Fenwick (Fenwick Tree)](src/data-structures/tree/fenwick-tree/README.pt-BR.md) (Árvore indexada binária)
49-
* `A` [Gráfico (Graph)](src/data-structures/graph/README.pt-BR.md) (ambos dirigidos e não direcionados)
49+
* `A` [Grafo (Graph)](src/data-structures/graph/README.pt-BR.md) (ambos dirigidos e não direcionados)
5050
* `A` [Conjunto Disjuntor (Disjoint Set)](src/data-structures/disjoint-set/README.pt-BR.md)
5151
* `A` [Filtro Bloom (Bloom Filter)](src/data-structures/bloom-filter/README.pt-BR.md)
5252

@@ -110,7 +110,7 @@ um conjunto de regras que define precisamente uma sequência de operações.
110110
* **Arvóres**
111111
* `B` [Depth-First Search](src/algorithms/tree/depth-first-search) (DFS)
112112
* `B` [Breadth-First Search](src/algorithms/tree/breadth-first-search) (BFS)
113-
* **Gráficos**
113+
* **Grafos**
114114
* `B` [Depth-First Search](src/algorithms/graph/depth-first-search) (DFS)
115115
* `B` [Breadth-First Search](src/algorithms/graph/breadth-first-search) (BFS)
116116
* `B` [Kruskal’s Algorithm](src/algorithms/graph/kruskal) - encontrando Árvore Mínima de Abrangência (MST) para grafo não direcionado ponderado
@@ -154,8 +154,8 @@ algoritmo é uma abstração maior que um programa de computador.
154154
* `A` [Dijkstra Algorithm](src/algorithms/graph/dijkstra) - finding shortest path to all graph vertices
155155
* `A` [Prim’s Algorithm](src/algorithms/graph/prim) - encontrando Árvore Mínima de Abrangência (MST) para grafo não direcionado ponderado
156156
* `A` [Kruskal’s Algorithm](src/algorithms/graph/kruskal) - encontrando Árvore Mínima de Abrangência (MST) para grafo não direcionado ponderado
157-
* **Divide and Conquer** - dividir o problema em partes menores e depois resolver essas partes
158-
* `B` [Binary Search](src/algorithms/search/binary-search)
157+
* **Dividir p/ Conquistar** - dividir o problema em partes menores e depois resolver essas partes
158+
* `B` [Busca binária (Binary Search)](src/algorithms/search/binary-search)
159159
* `B` [Tower of Hanoi](src/algorithms/uncategorized/hanoi-tower)
160160
* `B` [Pascal's Triangle](src/algorithms/math/pascal-triangle)
161161
* `B` [Euclidean Algorithm](src/algorithms/math/euclidean-algorithm) - calculate the Greatest Common Divisor (GCD)
@@ -166,7 +166,7 @@ algoritmo é uma abstração maior que um programa de computador.
166166
* `B` [Jump Game](src/algorithms/uncategorized/jump-game)
167167
* `A` [Permutations](src/algorithms/sets/permutations) (com e sem repetições)
168168
* `A` [Combinations](src/algorithms/sets/combinations) (com e sem repetições)
169-
* **Dynamic Programming** - criar uma solução usando sub-soluções encontradas anteriormente
169+
* **Programação Dinâmica** - criar uma solução usando sub-soluções encontradas anteriormente
170170
* `B` [Fibonacci Number](src/algorithms/math/fibonacci)
171171
* `B` [Jump Game](src/algorithms/uncategorized/jump-game)
172172
* `B` [Unique Paths](src/algorithms/uncategorized/unique-paths)

0 commit comments

Comments
 (0)
Please sign in to comment.