Inspired by the great dialogue from a Malayalam movie - Articles about education, technology and travel
Archive of posts with category 'Data Structures'
According to Wikipedia, every level, except possibly the last, is completely filled in a complete binary tree, and all nodes in the last level are as far left as possible....
Today we will discuss another Binary Tree problem.
A binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child. Today...
Binary Search is a specialized algorithm compared to a normal sequential search. The concept of Binary Search is to search for the element very efficiently by dividing the input into...
Today we are going to discuss another LeetCode problem.
We have done some problems using stack and today we are trying to do more of a conceptual exercise.
Stack is another important data structure. The parentheses validity check is a classic question that can be solved using a stack. It’s by pushing the opening parentheses to stack and...
Today we are going to solve a very interesting concept in linked lists that is cycle detection. There is a cycle in a linked list if there is some node...
We have already familiarised ourselves with linked lists and today we’ll try to solve another linked list problem.
The linked list is another interesting data structure in Computer Science. They are similar to arrays but instead of storing data in consecutive memory locations in a linked list the...
Palindrome check problems are very common in the Strings section of the interview process. This question is a modified version of the palindrome check on a string.
Today, I’m going to try to solve another string problem which is a medium complex problem from LeetCode.
The Problem
So far we have solved array-based questions and discussed different solution approaches. Today we are going to try a string problem. Let’s take an easy one to start with.
This is another array-based question that will be relatively harder to solve. This is similar to the Container With Most Water Problem which we already solved.
Today we are going to discuss another array-based question which is going to be a little bit tougher than the previous one.
I’ve thought about many ideas regarding my very first post here on vannucherum.com and decided to go ahead with this. What could be better than solving a Computer Science problem...