https://github.com/aristiklever-r-sousa/graphsalgorithms
Algoritmos em C voltados à Teoria dos Grafos
https://github.com/aristiklever-r-sousa/graphsalgorithms
algorithms c grafos graph-algorithms
Last synced: about 1 year ago
JSON representation
Algoritmos em C voltados à Teoria dos Grafos
- Host: GitHub
- URL: https://github.com/aristiklever-r-sousa/graphsalgorithms
- Owner: Aristiklever-R-Sousa
- License: mit
- Created: 2021-05-19T00:08:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-20T01:34:19.000Z (about 5 years ago)
- Last Synced: 2025-03-17T02:45:21.526Z (over 1 year ago)
- Topics: algorithms, c, grafos, graph-algorithms
- Language: C
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Algoritmos para Grafos em C
## O que são Grafos?
De uma maneira geral, um grafo é uma estrutura de dados formado por vértices e arestas.
Cada vétice está ligado (ou não) a outro vétice por meio de uma aresta.
## O que há nesse repositório?
Esse repositório possui:
Libs contruídos em C para lidar com as diversas problemáticas relacionadas a essas estruturas;
Duas representações (implementações) de Grafos diferentes: Matrizes de Adjacencias e Lista de Adjacências.
## Como ajudar na construção dessas Libs?
- Faça um fork desse repositório;
- Crie uma branch com a sua feature: `git checkout -b my-feature`
- Commit suas mudanças: `git commit -m 'feat: My new feature'`
- Push a sua branch: `git push origin my-feature`
---
Feito com muito ❤️ por mim, Aristiklever R. Sousa 😊.