Nowadays it’s very common to receive JSON data from many sources and to process it in our programs. I have the same problem and, sometimes, I also have to debug the received…
Month: May 2016
Implementing IEnumerable in the Data Structures
After finishing the series of articles about data structures (see here, here, here and here) I started to think about the GetItems method I had implemented in the Linked List and in…
Data structures in C# – Part 4 – Trees
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 –…