mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
Add pt-BR translation to search/linear-search (#663)
This commit is contained in:
parent
8bd329d5e5
commit
47d5c8f744
@ -1,4 +1,8 @@
|
||||
# Linear Search
|
||||
|
||||
_Read this in other languages:_
|
||||
[Português brasileiro](README.pt-BR.md).
|
||||
|
||||
In computer science, linear search or sequential search is a
|
||||
method for finding a target value within a list. It sequentially
|
||||
checks each element of the list for the target value until a
|
||||
|
19
src/algorithms/search/linear-search/README.pt-BR.md
Normal file
19
src/algorithms/search/linear-search/README.pt-BR.md
Normal file
@ -0,0 +1,19 @@
|
||||
# Busca Linear
|
||||
|
||||
_Leia isso em outras línguas:_
|
||||
[english](README.md).
|
||||
|
||||
Na Ciência da Computação, busca linear ou busca sequencial é um método para encontrar um elemento alvo em uma lista.
|
||||
O algoritmo verifica sequencialmente cada elemento da lista procurando o elemento alvo até ele ser encontrado ou até ter verificado todos os elementos.
|
||||
A Busca linear realiza no máximo `n` comparações, onde `n` é o tamanho da lista.
|
||||
|
||||
![Busca Linear](https://www.tutorialspoint.com/data_structures_algorithms/images/linear_search.gif)
|
||||
|
||||
## Complexidade
|
||||
|
||||
**Complexidade de Tempo**: `O(n)` - pois no pior caso devemos verificar cada elemento exatamente uma vez.
|
||||
|
||||
## Referências
|
||||
- [Wikipedia](https://en.wikipedia.org/wiki/Linear_search)
|
||||
- [TutorialsPoint](https://www.tutorialspoint.com/data_structures_algorithms/linear_search_algorithm.htm)
|
||||
- [Youtube](https://www.youtube.com/watch?v=SGU9duLE30w)
|
Loading…
Reference in New Issue
Block a user