initiated translation of new sections, #9

This commit is contained in:
Marlon Aviz 2017-04-01 10:24:13 -03:00
parent 0a44f11a1a
commit 76cde4f2a6

View File

@ -39,13 +39,13 @@ Se você quer ser um engenheiro de confiabilidade ou engenheiro de sistemas, est
- [The Daily Plan](#the-daily-plan) - [The Daily Plan](#the-daily-plan)
- [Conhecimento Prévio](#conhecimento-prévio) - [Conhecimento Prévio](#conhecimento-prévio)
- [Complexidade Algorítmica / Big-O / Análise assintótica](#complexidade-algorítmica--big-o--análise-assintótica) - [Complexidade Algorítmica / Big-O / Análise assintótica](#complexidade-algorítmica--big-o--análise-assintótica)
- [Data Structures](#data-structures) - [Estrutura de Dados](#estrutura-de-dados)
- [Arrays](#arrays) - [Arrays](#arrays)
- [Linked Lists](#linked-lists) - [Linked Lists](#linked-lists)
- [Stack](#stack) - [Stack](#stack)
- [Queue](#queue) - [Queue](#queue)
- [Hash table](#hash-table) - [Hash table](#hash-table)
- [More Knowledge](#more-knowledge) - [Mais Conhecimento](#mais-conhecimento)
- [Binary search](#binary-search) - [Binary search](#binary-search)
- [Bitwise operations](#bitwise-operations) - [Bitwise operations](#bitwise-operations)
- [Trees](#trees) - [Trees](#trees)
@ -552,7 +552,7 @@ Write code on a whiteboard or paper, not a computer. Test with some sample input
Se alguma das aulas forem muito "matemáticas", você pode pular para o final e Se alguma das aulas forem muito "matemáticas", você pode pular para o final e
ver o vídeo de matemática discreta para ganhar um conhecimento base. ver o vídeo de matemática discreta para ganhar um conhecimento base.
## Data Structures ## Estrutura de Dados
- ### Arrays - ### Arrays
- Implement an automatically resizing vector. - Implement an automatically resizing vector.
@ -678,7 +678,7 @@ Write code on a whiteboard or paper, not a computer. Test with some sample input
- get(key) - get(key)
- remove(key) - remove(key)
## More Knowledge ## Mais Conhecimento
- ### Binary search - ### Binary search
- [ ] [Binary Search (vídeo)](https://www.youtube.com/watch?v=D5SrAga1pno) - [ ] [Binary Search (vídeo)](https://www.youtube.com/watch?v=D5SrAga1pno)