Solving Shortest Path in a Binary Matrix
June 01
Search for a command to run...
Articles tagged with #data-structures
June 01
If you haven't read the previous article in this series, Please find the link here. Patterns Traversal(s) Level-order Traversal of a Tree Given a binary tree, find its level order traversal. Note: Level order traversal of a tree is breadth-first ...

They are everywhere. What is a Tree? Trees are non-linear data structures that are quite often used to represent hierarchical data with a set of connected nodes. Example: The above example student has a set of hierarchical data such as Name, Addres...

As I have covered a few topics in the previous article, I'll cover the remaining pattern and problems here. Add one to linked list As seen in the above example, we reverse the linked list first, then we will add carry(=1) to the node's data. Bu...

They can be grown & pruned. What is Linked List? Linked List is a non-contiguous data structure. The singly linked list is a linear data structure in which each list element contains a pointer that points to the next element in the list. Each eleme...

What is a Data Structure? We knowingly or unknowingly use data structures in our day-to-day life. We form a Queue to board public transport. We will arrange the books on a shelf in a particular order like A-Z, by the height of the books. We...
