C++ Programming – Tug of War – Backtracking – Given a set of n integers, divide the set in two subsets of n/2 sizes each such that the difference of the sum
C++ programming
C++ Programming – Program for Newton Raphson Method – Mathematical Algorithms – Given a function f(x) on floating number x and an initial guess for root
C++ Algorithm – Check if a given graph is tree or not – Graph Algorithm – Write a function that returns true if a given undirected graph is tree
C++ Programming – Program for Method Of False Position – Mathematical Algorithms – Given a function f(x) on floating number x and two numbers ‘a’ and ‘b’
C++ Programming – Program for Bisection Method – Mathematical Algorithms – The method is also called the interval halving method, the binary search method
C++ Algorithm – Biconnected Components -Graph Algorithm – A biconnected component is a maximal biconnected subgraph. Biconnected Graph is already discussed
C++ Programming – Program to add two polynomials – Mathematical Algorithms – Addition is simpler than multiplication of polynomials. We initialize result
C++ Programming – Floyd Warshall Algorithm – Dynamic Programming The Floyd Warshall Algorithm is for solving the All Pairs Shortest Path problem.
C++ Algorithm – Check whether a given graph is Bipartite or not – Graph Algorithm – A Bipartite Graph is a graph whose vertices can be divided
C++ Programming – Longest Bitonic Subsequence – Dynamic Programming Array arr[0.n-1] containing positive integers, a subsequence of arr[] is called Bitonic