The Graph Theory in C# (Summary)
It is my pleasure to share my Graph Library in C#. Well... at least parts of it.
This series covered the following topics.
My quest, and therefore my graph library, focused on graph data, not on algorithms. Graph data can be prepared in to various types of lists and matrices. For some algorithms, this data prep is a must. I have a few of these popular lists in my graph library. Again, the focus is on data. My graph library does not include the search and traversal algorithms. Anyway, I'll share my lists and matrices in a separate new series. For now, enjoy the basics, rejoice and be glad!
This series covered the following topics.
- The Graph Theory in C# (Part 1) - Introduction
- The Graph Theory in C# (Part 2) - The quest...
- The Graph Theory in C# (Part 3) - The basic Graph
- The Graph Theory in C# (Part 4) - Starting with the Vertex
- The Graph Theory in C# (Part 5) - The Vertex class in full
- The Graph Theory in C# (Part 6) - Dealing with the Edge
- The Graph Theory in C# (Part 7) - The Edge class in full
- The Graph Theory in C# (Part 8) - Revisiting the Graph
- The Graph Theory in C# (Part 9) - The Graph class in full
My quest, and therefore my graph library, focused on graph data, not on algorithms. Graph data can be prepared in to various types of lists and matrices. For some algorithms, this data prep is a must. I have a few of these popular lists in my graph library. Again, the focus is on data. My graph library does not include the search and traversal algorithms. Anyway, I'll share my lists and matrices in a separate new series. For now, enjoy the basics, rejoice and be glad!
Comments
Post a Comment