Welcome to the Vitamin Page.

The page is dedicated to the Vitamin project, which is a C# project with a singular purpose, understanding data structures. This is an ongoing process, time permitting and perhaps when I learn new or interesting points regarding data structures and their usage and functionality, I will update the repo and this page. As of this moment, the following topics are covered. So get comfortable with C#, it's a marvelous language.

Sorting

Before diving into searching algorithms, you must first understand sorting algorithms. These algorithms are used to place or arrange elements in a container (array, tree, etc.) in a numerical or lexical order. The simply fact is that in order to have the most efficient search, the data must be sorted. Now this is not true of every case, as in the case of associative arrays, but well get to that later. The following list encompasses the current offerings and is broken into asymptotic complexity by algorithm, currently implemented, ranging from best, worst to average. Further reading on sorting can be found here.

Searching

Being a master of sorting data with only get you so far, we need to understand where an how to get to relevant data within a collection. Luckily there are two well defined searching methods, Binary and Sequential search algorithms, for sorted and unsorted data respectively.

Data Structures

Data structures! Final we have arrived!

Support or Contact

Questions, Comments or concerns or just want to chat? Please feel free to reach out to me, Bryan Mackenzie (@Bamacken)!