Substring in c programming - C Programming - c programming code to find a substring from a given string and for all substrings of a string.
Category - C Programming
C Programming - Program for Fibonacci numbers - Dynamic Programming The Fibonacci numbers are the numbers in the following integer sequence.
C Programming - Vertex Cover Problem - Introduction and Approximate Algorithm - It can be proved that the above approximate algorithm never finds a vertex
C Programming - Backtracking - Hamiltonian Cycle - Create an empty path array and add vertex 0 to it. Add other vertices, starting from the vertex 1
C Programming - Word Wrap Problem - Dynamic Programming Given a sequence of words, and a limit on the number of characters that can be put in one line
C programming - Check if a graph is strongly connected - A directed graph is strongly connected if there is a path between any two pair of vertices
C Algorithm - Find maximum number of edge disjoint paths between two vertices - Graph Algorithm - Given a directed graph and two vertices in it, source
C Programming - Partition Problem - Dynamic Programming Partition problem is to determine whether a given set can be partitioned into two subsets
C programming - Graph Coloring | Set 2 (Greedy Algorithm) - Graph Algorithms - It doesn’t guarantee to use minimum colors, but it guarantees an upper bound
C Programming - Backtracking Set 8 Solving Cryptarithmetic Puzzles - Backtracking - The goal here is to assign each letter a digit from 0 to 9 .The rules are...