#programming-languages
Read more stories on Hashnode
Articles with this tag
In the previous blog, I mentioned I would create a separate blog on the Greedy Algorithm, and here it is. This is the blog! Let's get started! What is...
A Trie is a tree-based data structure that organize information in a hierarchy. The main point is, while most other structures are designed to...
In this blog, you will get a deep knowledge about binary search tree, which includes creating binary search based on Linked list and various...
What is Stack? We can think of stack as a pile of vertically stacked objects. Insertion or removal of a stack follows the LIFO(Last-in First-Out)...
Question 1 : Remove Duplicates Write a function to remove duplicates from an unsorted linked list. Input 1 -> 2 -> 2 -> 3 -> 4 -> 4 -> 4 -> 5 Output 1...