Posts in this Series: Linked Lists Stacks Queues Trees (this post) To conclude the data structures shown in this series, we will show the tree. The tree will store organized data –…
Tag: Algorithms
Data structures in C# – Part 3 – Queues
Posts in this Series: Linked Lists Stacks Queues (this post) Trees In the last post, I’ve talked about stacks, a LIFO (Last In – First out) data structure. In this post, I…
Data structures in C# – Part 2 – Stacks
Posts in this Series: Linked Lists Stacks (this post) Queues Trees In the last post I’ve talked about one of the most basic data structures, the linked list. In this post we…
Data structures in C# – Part 1 – Linked lists
Posts in this Series: Linked Lists (this post) Stacks Queues Trees Although we use data structures daily in our programs, sometimes we forget the theory behind them. So, I decided to create…