|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Educational examples for dynamic matrices with automatic resizing. More...
Go to the source code of this file.
Functions | |
| int | main () |
Educational examples for dynamic matrices with automatic resizing.
2D matrix that automatically grows as needed Sparse storage: Only allocated cells consume memory Perfect for dynamic graphs, adjacency matrices, distance tables
g++ -std=c++20 -I.. -o tpl_dynMat_example tpl_dynMat_example.cc ./tpl_dynMat_example
Definition in file tpl_dynMat_example.cc.
| int main | ( | ) |
Definition at line 37 of file tpl_dynMat_example.cc.
References Aleph::maps(), Aleph::DynMatrix< T >::read(), and Aleph::DynMatrix< T >::write().