Alguns algoritmos e estruturas de dados estudados.
Cada novo algoritmo ou estrutura de dados aprendida é catalogada juntamente com as anotações sobre o funcionamento e lógica aplicada.
data-structures-and-algorithms.lang/
├── algorithms/
│ ├── sorting/
│ │ ├── {algorithm}/
│ │ │ ├── {algorithm}.ts
│ │ │ ├── {algorithm}.go
│ │ │ └── {algorithm}.md
│ │ ├── {algorithm}/
│ │ │ ├── {algorithm}.ts
│ │ │ ├── {algorithm}.go
│ │ │ └── {algorithm}.md
│ ├── search/
│ │ ├── {algorithm}/
│ │ │ ├── {algorithm}.ts
│ │ │ ├── {algorithm}.go
│ │ │ └── {algorithm}.md
│ │ ├── {algorithm}/
│ │ │ ├── {algorithm}.ts
│ │ │ ├── {algorithm}.go
│ │ │ └── {algorithm}.md
├── data_structures/
│ ├── linear/
│ │ ├── {data_structure}/
│ │ │ ├── {data_structure}.ts
│ │ │ ├── {data_structure}.go
│ │ │ └── {data_structure}.md
│ │ ├── {data_structure}/
│ │ │ ├── {data_structure}.ts
│ │ │ ├── {data_structure}.go
│ │ │ └── {data_structure}.md
└── README.md