Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 1.43 KB

File metadata and controls

42 lines (37 loc) · 1.43 KB

Banner

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.

Estrutura

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