nbro / andz

Algorithms and data structures for educational, demonstrational and experimental purposes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement matrix data structures

nbro opened this issue · comments

commented

TODO

  • Implement the edge list representation
  • Implement the adjacency matrix representation
  • Implement the adjacency list representation
  • Write the tests

Questions

  • Which matrices should we support?
  • Should matrices derive from a Graph data structure?

Ideas

  • The implementations should be as simple as possible, as the goal is not provide optimized implementations, and they should illustrate the concepts