Skip to content

Commit e954d6d

Browse files
committed
pt-BR translations fixes.
1 parent ed99f9d commit e954d6d

33 files changed

+63
-93
lines changed

README.pt-BR.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@ os dados.
2929

3030
`B` - Iniciante, `A` - Avançado
3131

32-
* `B` [Lista Encadeada (Linked List)](src/data-structures/linked-list.pt-BR)
33-
* `B` [Lista Duplamente Ligada (Doubly Linked List)](src/data-structures/doubly-linked-list.pt-BR)
34-
* `B` [Fila (Queue)](src/data-structures/queue.pt-BR)
35-
* `B` [Stack](src/data-structures/stack.pt-BR)
36-
* `B` [Tabela de Hash (Hash Table)](src/data-structures/hash-table.pt-BR)
37-
* `B` [Heap](src/data-structures/heap.pt-BR)
38-
* `B` [Fila de Prioridade (Priority Queue)](src/data-structures/priority-queue.pt-BR)
39-
* `A` [Trie](src/data-structures/trie.pt-BR)
40-
* `A` [Árvore (Tree)](src/data-structures/tree.pt-BR)
41-
* `A` [Árvore de Pesquisa Binária (Binary Search Tree)](src/data-structures/tree/binary-search-tree.pt-BR)
42-
* `A` [Árvore AVL (AVL Tree)](src/data-structures/tree/avl-tree.pt-BR)
43-
* `A` [Árvore Vermelha-Preta (Red-Black Tree)](src/data-structures/tree/red-black-tree.pt-BR)
44-
* `A` [Árvore de Segmento (Segment Tree)](src/data-structures/tree/segment-tree.pt-BR) - com exemplos de consultas min / max / sum range
45-
* `A` [Árvore Fenwick (Fenwick Tree)](src/data-structures/tree/fenwick-tree.pt-BR) (Árvore indexada binária)
46-
* `A` [Gráfico (Graph)](src/data-structures/graph.pt-BR) (ambos dirigidos e não direcionados)
47-
* `A` [Conjunto Disjuntor (Disjoint Set)](src/data-structures/disjoint-set.pt-BR)
48-
* `A` [Filtro Bloom (Bloom Filter)](src/data-structures/bloom-filter.pt-BR)
32+
* `B` [Lista Encadeada (Linked List)](src/data-structures/linked-list/README.pt-BR)
33+
* `B` [Lista Duplamente Ligada (Doubly Linked List)](src/data-structures/doubly-linked-list/README.pt-BR)
34+
* `B` [Fila (Queue)](src/data-structures/queue/README.pt-BR)
35+
* `B` [Stack](src/data-structures/stack/README.pt-BR)
36+
* `B` [Tabela de Hash (Hash Table)](src/data-structures/hash-table/README.pt-BR)
37+
* `B` [Heap](src/data-structures/heap/README.pt-BR)
38+
* `B` [Fila de Prioridade (Priority Queue)](src/data-structures/priority-queue/README.pt-BR)
39+
* `A` [Trie](src/data-structures/trie/README.pt-BR)
40+
* `A` [Árvore (Tree)](src/data-structures/tree/README.pt-BR)
41+
* `A` [Árvore de Pesquisa Binária (Binary Search Tree)](src/data-structures/tree/binary-search-tree/README.pt-BR)
42+
* `A` [Árvore AVL (AVL Tree)](src/data-structures/tree/avl-tree/README.pt-BR)
43+
* `A` [Árvore Vermelha-Preta (Red-Black Tree)](src/data-structures/tree/red-black-tree/README.pt-BR)
44+
* `A` [Árvore de Segmento (Segment Tree)](src/data-structures/tree/segment-tree/README.pt-BR) - com exemplos de consultas min / max / sum range
45+
* `A` [Árvore Fenwick (Fenwick Tree)](src/data-structures/tree/fenwick-tree/README.pt-BR) (Árvore indexada binária)
46+
* `A` [Gráfico (Graph)](src/data-structures/graph/README.pt-BR) (ambos dirigidos e não direcionados)
47+
* `A` [Conjunto Disjuntor (Disjoint Set)](src/data-structures/disjoint-set/README.pt-BR)
48+
* `A` [Filtro Bloom (Bloom Filter)](src/data-structures/bloom-filter/README.pt-BR)
4949

5050
## Algoritmos
5151

src/data-structures/bloom-filter/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Bloom Filter
22

33
_Read this in other languages:_
4-
[_Русский_](README.ru-RU.md) | [_Português_](README.pt-BR.md)
4+
[_Русский_](README.ru-RU.md),
5+
[_Português_](README.pt-BR.md)
56

67
A **bloom filter** is a space-efficient probabilistic
78
data structure designed to test whether an element

src/data-structures/bloom-filter/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Filtro Bloom (Bloom Filter)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_Русский_](README.ru-RU.md)
5-
63
O **bloom filter** é uma estrutura de dados probabilística
74
espaço-eficiente designada para testar se um elemento está
85
ou não presente em um conjunto de dados. Foi projetado para ser

src/data-structures/disjoint-set/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Disjoint Set
22

33
_Read this in other languages:_
4-
[_Русский_](README.ru-RU.md) | [_Português_](README.pt-BR.md)
4+
[_Русский_](README.ru-RU.md),
5+
[_Português_](README.pt-BR.md)
56

67

78
**Disjoint-set** data structure (also called a union–find data structure or merge–find set) is a data

src/data-structures/disjoint-set/README.pt-BR.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Conjunto Disjuntor (Disjoint Set)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_Русский_](README.ru-RU.md)
5-
63
**Conjunto Disjuntor**
74

85
**Conjunto Disjuntor** é uma estrutura de dados (também chamado de
@@ -17,7 +14,6 @@ Além de muitos outros usos (veja a seção Applications), conjunto disjuntor
1714
desempenham um papel fundamental no algoritmo de Kruskal para encontrar a
1815
árvore geradora mínima de um gráfico (graph).
1916

20-
2117
![disjoint set](https://upload.wikimedia.org/wikipedia/commons/6/67/Dsu_disjoint_sets_init.svg)
2218

2319
*MakeSet* cria 8 singletons.

src/data-structures/doubly-linked-list/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Doubly Linked List
22

33
_Read this in other languages:_
4-
[_Русский_](README.ru-RU.md) | [_简体中文_](README.zh-CN.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_Русский_](README.ru-RU.md),
5+
[_简体中文_](README.zh-CN.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **doubly linked list** is a linked data structure that
710
consists of a set of sequentially linked records called nodes. Each node contains

src/data-structures/doubly-linked-list/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Lista Duplamente Ligada (Doubly Linked List)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **lista duplamente conectada** é uma estrutura
74
de dados vinculada que se consistem em um conjunto de registros
85
sequencialmente vinculados chamados de nós (nodes). Em cada nó contém dois

src/data-structures/graph/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Graph
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_Português_](README.pt-BR.md)
57

68
In computer science, a **graph** is an abstract data type
79
that is meant to implement the undirected graph and

src/data-structures/graph/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Gráfico (Graph)
22

3-
_Read this in other languages:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, um **gráfico** é uma abstração de estrutura
74
de dados que se destina a implementar os conceitos da matemática de
85
gráficos direcionados e não direcionados, especificamente o campo da

src/data-structures/hash-table/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Hash Table
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computing, a **hash table** (hash map) is a data
710
structure which implements an *associative array*

src/data-structures/hash-table/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Tabela de Hash (Hash Table)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **tabela de hash** (hash map) é uma
74
estrutura de dados pela qual implementa um tipo de dado abstrado de
85
*array associativo*, uma estrutura que pode *mapear chaves para valores*.

src/data-structures/heap/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Heap (data-structure)
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **heap** is a specialized tree-based
710
data structure that satisfies the heap property described

src/data-structures/heap/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Heap (estrutura de dados)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, um **heap** é uma estrutura de dados
74
baseada em uma árvore especializada que satisfaz a propriedade _heap_ descrita abaixo.
85

src/data-structures/linked-list/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Linked List
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **linked list** is a linear collection
710
of data elements, in which linear order is not given by

src/data-structures/linked-list/README.pt-BR.md

-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Lista Encadeada (Linked List)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **lista encadeada** é uma coleção linear de
74
elementos de dado, em que a ordem linear não é dada por sua locação
85
física na memória. Em vez disso, cada elemento aponta para o próximo.
@@ -146,15 +143,9 @@ end ReverseTraversal
146143

147144
### Complexidade de Tempo
148145

149-
<<<<<<< HEAD
150-
| Acesso | Busca | Inserção | Deleção |
151-
| :----: | :---: | :------: | :-----: |
152-
| O(n) | O(n) | O(1) | O(n) |
153-
=======
154146
| Acesso | Pesquisa | Inserção | Remoção |
155147
| :----: | :------: | :------: | :-----: |
156148
| O(n) | O(n) | O(1) | O(n) |
157-
>>>>>>> create portuguese translations
158149

159150
### Complexidade de Espaçø
160151

src/data-structures/priority-queue/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Priority Queue
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **priority queue** is an abstract data type
710
which is like a regular queue or stack data structure, but where

src/data-structures/priority-queue/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Fila de Prioridade (Priority Queue)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **fila de prioridade** é um tipo de dados
74
abastrato que é como uma fila regular (regular queue) ou estrutura de
85
dados de pilha (stack), mas adicionalmente cada elemento possui uma

src/data-structures/queue/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Queue
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **queue** is a particular kind of abstract data
710
type or collection in which the entities in the collection are

src/data-structures/queue/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Fila (Queue)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **fila** é um tipo particular de abstração
74
de tipo de dado ou coleção em que as entidades na coleção são mantidas em
85
ordem e a causa primária (ou única) de operações na coleção são a

src/data-structures/stack/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Stack
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md), | [_Русский_](README.ru-RU.md) | [_日本語_](README.ja-JP.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Português_](README.pt-BR.md)
58

69
In computer science, a **stack** is an abstract data type that serves
710
as a collection of elements, with two principal operations:

src/data-structures/stack/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Stack
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, um **stack** é uma estrutura de dados abstrata
74
que serve como uma coleção de elementos com duas operações principais:
85

src/data-structures/tree/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Tree
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Português_](README.pt-BR.md)
56

67
* [Binary Search Tree](binary-search-tree)
78
* [AVL Tree](avl-tree)

src/data-structures/tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore (Tree)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md)
5-
63
* [Árvore de Pesquisa Binária (Binary Search Tree)](binary-search-tree/README.pt-BR.md)
74
* [Árvore AVL (AVL Tree)](avl-tree/README.pt-BR.md)
85
* [Árvore Vermelha-Preta (Red-Black Tree)](red-black-tree/README.pt-BR.md)

src/data-structures/tree/avl-tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore AVL (AVL Tree)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md)
5-
63
Na ciência da computação, uma **árvore AVL** (em homenagem aos
74
inventores Adelson-Velsky e Landis) é uma árvore de pesquisa
85
binária auto balanceada. Foi a primeira estrutura de dados a

src/data-structures/tree/binary-search-tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore de Pesquisa Binária (Binary Search Tree)
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md)
5-
63
Na ciência da computação **binary search trees** (BST), algumas vezes
74
chamadas de árvores binárias ordenadas (_ordered or sorted binary trees_),
85
é um tipo particular de container: estruturas de dados que armazenam

src/data-structures/tree/fenwick-tree/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Fenwick Tree / Binary Indexed Tree
22

3-
_Leia em outro idioma:_
4-
[_English_](README.pt-BR.md)
3+
_Read this in other languages:_
4+
[_Português_](README.pt-BR.md)
55

66
A **Fenwick tree** or **binary indexed tree** is a data
77
structure that can efficiently update elements and

src/data-structures/tree/fenwick-tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore Fenwick / Árvore Binária Indexada (Fenwick Tree / Binary Indexed Tree)
22

3-
_Read this in other languages:_
4-
[_Português_](README.md)
5-
63
Uma **árvore Fenwick** ou **árvore binária indexada** é um tipo de
74
estrutura de dados que consegue eficiemente atualizar elementos e
85
calcular soma dos prefixos em uma tabela de números.

src/data-structures/tree/red-black-tree/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Red–Black Tree
22

3-
_Leia em outro idioma:_
4-
[_English_](README.pt-BR.md)
3+
_Read this in other languages:_
4+
[_Português_](README.pt-BR.md)
55

66
A **red–black tree** is a kind of self-balancing binary search
77
tree in computer science. Each node of the binary tree has

src/data-structures/tree/red-black-tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore Vermelha-Preta (Red-Black Tree)
22

3-
_Read this in other languages:_
4-
[_Português_](README.md)
5-
63
Uma **árvore vermelha-preta** é um tipo de árvore de pesquisa
74
binária auto balanceada na ciência da computação. Cada nó da
85
árvore binária possui um _bit_ extra, e este _bit_ é frequentemente

src/data-structures/tree/segment-tree/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Segment Tree
22

3-
_Leia em outro idioma:_
4-
[_English_](README.pt-BR.md)
3+
_Read this in other languages:_
4+
[_Português_](README.pt-BR.md)
55

66
In computer science, a **segment tree** also known as a statistic tree
77
is a tree data structure used for storing information about intervals,

src/data-structures/tree/segment-tree/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Árvore de Segmento (Segment Tree)
22

3-
_Read this in other languages:_
4-
[_Português_](README.md)
5-
63
Na ciência da computação, uma **árvore de segmento** também conhecida como
74
árvore estatística é uma árvore de estrutura de dados utilizadas para
85
armazenar informações sobre intervalores ou segmentos. Ela permite pesquisas

src/data-structures/trie/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Trie
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md) | [_Português_](README.pt-BR.md)
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_Português_](README.pt-BR.md)
57

68
In computer science, a **trie**, also called digital tree and sometimes
79
radix tree or prefix tree (as they can be searched by prefixes),

src/data-structures/trie/README.pt-BR.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Trie
22

3-
_Leia em outro idioma:_
4-
[_English_](README.md) | [_简体中文_](README.zh-CN.md) | [_Русский_](README.ru-RU.md)
5-
63
Na ciência da computação, uma **trie**, também chamada de árvore digital (digital tree)
74
e algumas vezes de _radix tree_ ou _prefix tree_ (tendo em vista que eles
85
podem ser pesquisados por prefixos), é um tipo de árvore de pesquisa, uma

0 commit comments

Comments
 (0)