https://github.com/antunesluis/lib-ed
Repositório dedicado às implementações das principais estruturas de dados em C.
https://github.com/antunesluis/lib-ed
c data-structures
Last synced: 5 months ago
JSON representation
Repositório dedicado às implementações das principais estruturas de dados em C.
- Host: GitHub
- URL: https://github.com/antunesluis/lib-ed
- Owner: antunesluis
- License: mit
- Created: 2023-11-02T01:03:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-21T02:56:17.000Z (over 1 year ago)
- Last Synced: 2024-07-21T03:40:36.428Z (over 1 year ago)
- Topics: c, data-structures
- Language: C
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lib-ed
Repositório dedicado às implementações das principais estruturas de dados em C.
## Tópicos
- [Listas Encadeadas Simples](https://github.com/antunesluis/lib-ed/tree/main/linked-list)
- [Listas Duplamente Encadeadas](https://github.com/antunesluis/lib-ed/tree/main/list)
- [Listas Circulares](https://github.com/antunesluis/lib-ed/tree/main/circular-linked-list)
- [Pilhas Estáticas](https://github.com/antunesluis/lib-ed/tree/main/static-stack)
- [Pilhas Dinâmicas](https://github.com/antunesluis/lib-ed/tree/main/stack)
- [Filas Circulares Estáticas](https://github.com/antunesluis/lib-ed/tree/main/static-circular-queue)
- [Filas Dinâmicas](https://github.com/antunesluis/lib-ed/tree/main/queue)
## Referências
CELES, Waldemar; CERQUEIRA, Renato; RANGEL, Jose. Introdução a Estruturas de Dados. Rio de Janeiro : Campus, 2004
[Curso: Dominando Estruturas de Dados 1](https://www.youtube.com/playlist?list=PL3ZslI15yo2r-gHJtjORRMRKMSNRpf7u5)