Showing posts with label
c
.
Show all posts
Showing posts with label
c
.
Show all posts
Wednesday, June 12, 2013
Determinant Calculation of N
th
Order Square Matrix| Cramer's Rule Implementation in C
›
Determinant calculation of a square matrix is widely used in solving many applied Mathematics problems. Some of them are while solving a se...
2 comments :
Friday, June 7, 2013
Huffman Algorithm Implementation in C| Huffman Encoding| Huffman Algorithm Example
›
Huffman Algorithm is an encoding technique for symbols where most frequently occuring symbols are represented with short length bit string...
Friday, May 24, 2013
Gauss Jordan Method Implementation with C Source Code
›
In linear algebra, Gaussian Jordan method is an algorithm for solving systems of linear equations. It is usually understood as a sequence o...
2 comments :
Saturday, May 18, 2013
Newton-Raphson Method in C with source codes
›
Newton-Raphson method is a method for finding successively better roots (zeros) of a real valued function x: f(x) = 0. The algorithm can...
C Source Code for Dijkstra's Shortest Path Algorithm
›
Dijkstra's Shortest Path Algorithm is the popular algorithm for finding shortest/optimal path in compute science due to its widespread ...
Priority Queue Implementation: C source codes
›
A priority queue is data structure in which intrinsic ordering of the elements does determine the results of its basic operations. These ar...
Merge Sort Algorithm with C source Codes
›
Here, I've presented the merge sort algorithm as the straight merge sort. The basic idea is to break the file into n subfiles of size 1...
C Source Codes for Implementing Linked List
›
The linked list can be implemented using the pointer structure in C so that we can add an element delete an element search for an elem...
10 comments :
Implement Infix to postfix conversion using Stack C source codes
›
We can implement a valid infix expression to a valid postfix expression using stacks in c as shown: //C PROGRAM TO CONVERT GIVEN VA...
7 comments :
Code Generator in C
›
The following code generates the code itself. The code seems to be simple but it's little bit tricky and is FAQ for programmers in an i...
›
View web version