#data-structures
Read more stories on Hashnode
Articles with this tag
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...