https://github.com/guibrandt/sparse_matrix
Matriz esparsa genérica utilizando árvores AVL em C++,
https://github.com/guibrandt/sparse_matrix
avl-tree cotuca cpp11 data-structure-cpp generics maligno sparse-matrix
Last synced: 4 months ago
JSON representation
Matriz esparsa genérica utilizando árvores AVL em C++,
- Host: GitHub
- URL: https://github.com/guibrandt/sparse_matrix
- Owner: GuiBrandt
- License: mit
- Created: 2018-09-30T15:34:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-27T14:55:45.000Z (over 6 years ago)
- Last Synced: 2025-01-11T07:36:11.703Z (5 months ago)
- Topics: avl-tree, cotuca, cpp11, data-structure-cpp, generics, maligno, sparse-matrix
- Language: C++
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sparse_matrix
Implementação de matriz esparsa usando árvore binárias AVL em C++Feito como exercício nas aulas do Prof. André (a.k.a. Maligno) no 6º semestre do curso de Informática no COTUCA.
## Primeiros passos
### Para usar
Para usar a classe de árvore AVL, copie o arquivo
`sparse_matrix.hpp` para a pasta do seu projeto e, no código, inclua o cabeçalho:
```cpp
#include "sparse_matrix.hpp"
```Este projeto também depende de [`avl_tree`](https://github.com/GuiBrandt/avl_tree).