Understand one of the most important topics when you first start a job as a developer. ยท Introduction As someone who uses the internet daily, you are...
Definition The Tree A Tree is an abstract data type that is composed of Nodes where each Node can contain 0 or more child Nodes. Moreover, unlike an...
Introduction This article is part of my Data Structure series, where I try to explain each Data structure in a simplified way. In this part, I will...
What is a Linked List? Simply a Linked List is a collection of data elements where every element points to the next element. Using the technical terms...
Introduction In this article, I will explain what I learned about Hash Tables. It's important cause it is one of the most used data structures in the...
Suppose that you had created the front-end side for one application and after a while, you decide to add a backend server to it. In this article, I...