Algorithms »

C Program of Multilayer Perceptron Net using Backpropagation

Mr Coder February 24, 2013 2

C Program of Multilayer Perceptron Net using Backpropagation : A multilayer perceptron (MLP) is a feedforward artificial neural network model that maps sets of input data onto a set of appropriate output. An MLP

Read More »

C Program of Huffman coding using Greedy Algorithm Approach

Mr Coder February 20, 2013 1

C Program of Huffman coding using Greedy Algorithm Approach : This code is not written by me. I found a great article on Geeks for Geeks and thought it worth sharing. Still if you

Read More »

C program to Find Minimum Spanning tree KRUSKAL’s Algorithm

Mr Coder February 18, 2013 0

C program to Find Minimum Spanning tree KRUSKAL’s Algorithm : Kruskal’s algorithm is a greedy algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds

Read More »

C program to find Minimum Spanning tree PRIM’s Algorithm

Mr Coder February 18, 2013 0

C program to find Minimum Spanning tree PRIM’s Algorithm : Prim’s algorithm is a greedy algorithm that finds a minimum spanning tree for a connected weighted undirected graph. This means it finds a subset

Read More »

C program to implement Cyclic Redundancy Check CRC

Mr Coder February 17, 2013 1

C program to implement Cyclic Redundancy Check CRC : A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data. Blocks

Read More »

C Program to Find shortest Path using dijkstra’s algorithm

Mr Coder February 17, 2013 0

C Program to Find shortest Path using Dijkstra’s algorithm : Dijkstra’s algorithm is a graph search algorithm that solves the single-source shortest path problem for a graph with non-negative edge path costs, producing a

Read More »

C program of Matrix Multiplication using Pointers

Mr Coder February 15, 2013 1

C program of Matrix Multiplication using Pointers : Let us discuss how to multiply M x N matrix using a C program. First of all we need to understand how an M x N

Read More »

C program to convert Roman Number to Decimal Number

Mr Coder November 5, 2012 2

C program to convert Roman Number to Decimal Number : In my previous code, we have learned how to write a C program to convert Decimal number to Roman Number. Today we will learn

Read More »

C program to find Inverse of Matrix

Mr Coder September 17, 2012 16

C program to find Inverse of Matrix : For a square matrix A, the inverse matrix is written A-1. When A is multiplied by A-1 the result is the identity matrix I. Non-square matrices

Read More »

C program to find roots of quadratic equation

Mr Coder September 16, 2012 6

C program to find roots of quadratic equation : In mathematics, quadratic equation is second degree univariate polynomial equation. A general quadratic equation can be represented by : where a, b and c are

Read More »