
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 42 Articles for Data Structure and Algorithms

125 Views
Divide and Conquer is the technique where all the main problems are divided into subproblems and after that subproblems will be solved and merged into a single solution. The article "Most Asked Divide and Conquer Coding Problems" covers all the important coding problems. It provides you with a wide range of questions from easy level to hard level. Following are the top divide-and-conquer problems of data structure and algorithms − Easy Divide and Conquer Problems The following are the easy problems of divide and conquer ... Read More

157 Views
The matrix or grid data structure is the mix of two or more linear structures. In this sheet, you will find the important and industry-level problems. It will help you clear the programming interviews. This coding problem is organized from a basic level to an advanced level. Following is the range of problems on a matrix in Data Structure and Algorithms − Easy Matrix Problems Check if a Given Matrix is a Magic Square ... Read More

206 Views
Linked Lists is the linear data structure that stores the data in the node. In this article, we will discuss the most common and popular problems of linked lists in Data Structures and Algorithms. We are covering basic to advanced-level problems which will help you to learn the whole concept in a structured manner. The following are the most important and best problems on linked lists − Easy LL Problems Print the Middle of a Given Linked ... Read More

98 Views
A Stack is the linear data structure used to store the elements that are inserted and removed by following the principle of Last In First Out (LIFO). The article "Most Asked Problems on Stack Data Structure Asked in SDE Interviews" covers all the problems topic-wise and includes the industry level and important questions from the interview perspective. Here are the important stack problems of Data Structure and Algorithms − Easy Stack Problems Parenthesis ... Read More

628 Views
An array is a linear data structure that stores the data on contiguous memory locations. In this article, we will discuss the most common and popular problems of arrays in Data Structures and Algorithms. We are covering basic to advanced-level problems which will help you to learn the whole concept in a structured manner. Here is the list of problems that have been asked in programming interviews − Easy Array Problems Following are the easy array problems − ... Read More

57 Views
Recursion Algorithm in Data Structure and Algorithms is used to call the function by itself. The article "Most Asked Problems on Recursion Algorithm in Coding Interviews" benefits you by providing good examples of every problem of the recursion. It provides the problems from the basic to the hard level. It covers the core and important problems of the recursion algorithm. The following are the main problems with the recursion algorithm − Easy Recursion Problems Print Pattern Recursively ... Read More

147 Views
A Queue is the data structure used to store and manage the data in a specific order by following the principle of First In First Out (FIFO). The article "Most Asked Problems on Queue Data Structure in Programming Interviews" benefits you by providing good examples of every problem of the tree. It provides the problems from the basic to the hard level. It covers the core and important problems of Queue.Here is the list of queue problems to excel in the ... Read More

56 Views
Hash Data Structure uses a hash function to store data like a smart storage system. This article covers the most important and common problems. We have covered all the ranges from easy-level problems to hard-level problems. Hash is like this article a well-organized filing cabinet where you can get the store for finding things super quickly. Here are the top 50 problems that take you forward in Data Structures and Algorithms from basic to advanced! Easy Problems Find the count of distinct elements in an array Minimum insertions to form a palindrome with permutations allowed Find whether an array ... Read More

160 Views
Tree data structure consists of two nodes, right and left, and the nodes that don’t have children, are known as leaf nodes. The article “Top 50 Tree Coding Problems for Programming Interviews” benefits you by providing good examples of every problem of the tree. It provides the problems from the basic to the expert level. It covers the core and important problems of trees. Here is the list of Tree problems to excel in the Data Structure and Algorithms − Easy Problems Height of Binary Tree Symmetric Tree Maximum Depth of Binary Tree Minimum Depth of Binary Tree Identical ... Read More

123 Views
Dynamic Programming in Data Structures and Algorithms is used for breaking down the main problems into smaller problems. This article also breaks down all the problems into different sections which will help you to solve the problems section-wise. It includes the most common and trending problems of dynamic programming for clearing the interviews. Here are the problems list from beginner to expert level for learning the DP − Beginner DP Problems Climbing Stairs House Robber Maximum Subarray Coin Change Best Time to Buy and Sell Stock Pascal's Triangle Range Sum Query Fibonacci Number Min Cost Climbing Stairs Maximum Profit ... Read More