Normalization In DBMS : 1NF, 2Nf, 3NF, BCNF

Normalization In DBMS In this article we are going to discuss about Normalization De Normalization First Normal Form (1NF) Second Normal Form (2NF) Third Normal Form (3NF) Fourth Normal Form…

Continue Reading Normalization In DBMS : 1NF, 2Nf, 3NF, BCNF

Algorithms and Data Structures Tutorial

Algorithms and Data Structures Tutorial Prerequisites In order to under the concept of Algorithms and Data Structures Tutorial,reader must have a basic concept of C language. Even though you don't…

Continue Reading Algorithms and Data Structures Tutorial

Branch and bound | FIFO and LIFO Branch and bound

Branch and bound Branch and bound is a general algorithm (or systematic method) for finding an optimal solution to various optimization problems, especially in discrete and combinatorial optimization. The Branch…

Continue Reading Branch and bound | FIFO and LIFO Branch and bound

Sum of Subsets Problem | Backtracking

sum of subsets problem sum of subsets problem is nothing but Suppose we are given n distinct positive numbers and we desire to find all combinations of these numbers whose…

Continue Reading Sum of Subsets Problem | Backtracking

Algorithms Notes

Algorithms Notes   Algorithms Notes Introduction to Algorithm as Technology Time complexity And Space complexity Performance Analysis Amortized Analysis | Techniques used in Amortized Analysis Asymptotic Notation | Big oh…

Continue Reading Algorithms Notes

n queen problem | Backtracking

n queen problem A classic chess puzzle – n queen problem is Place 8 queen pieces on a chess board so that none of them can attack one another  …

Continue Reading n queen problem | Backtracking

Backtracking | Algorithm for Backtracking

Backtracking Backtracking is an algorithmic technique for recursively solving problems by trying to build a solution incrementally, one piece at a time, removing the solutions that fail to meet the…

Continue Reading Backtracking | Algorithm for Backtracking