Personal blog
Writing every week about programming, new technology and books.
DATA STRUCTURES AND ALGORITHMS
Stack and Queue Explained And Implemented in C#
09-Oct-2020

In today's video, I explained what are Stack and Queue data structures, how they work, and I also implemented them in C#.
DATA STRUCTURES AND ALGORITHMS
Binary Search in C#
07-Oct-2020

In today's lesson, I am going to talk about what is Binary Tree and how to implement it using C#. Also, I am going to compare it to some more common algorithms for searching like Iterative search and explain why Binary Search is more efficient.
DATA STRUCTURES AND ALGORITHMS
Binary Search Tree in C#
07-Oct-2020

In today's video, I am going to explain what is Binary Search Tree and how to create it with C#. I will also create two methods, Search and Insert and three different types of traversals.