Mathematics

Median Of Two Sorted Arrays

Admin | 04-Jan-2017 | C#, VB.Net, C, C++

This algorithm finds the median of two sorted arrays by first getting medians of the two sorted arrays and then comparing them.

Multiply Matrices

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm multiplies two given matrices

NCR

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds all the possible combination of the value n and r.

NPR

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds all possible rearrangement of the element i.e all the possible permutation value.

Prime Factor

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds all prime factors of given number.

Pythagorean Theorem

Admin | 07-Jun-2016 | C#, VB.Net, C, C++, PHP

In mathematics, the Pythagorean theorem, also known as Pythagoras' theorem, is a fundamental relation in Euclidean geometry among the three sides ...

Reverse Number

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm reverse the given number. For example if given number is 123 then output number will be 321.

Standard Deviation

Admin | 26-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm calculates the standard deviation of the given set of numbers.

Subtract Matrices

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds difference between corresponding elements of two matrices.

Transpose Matrix

Admin | 05-Mar-2016 | C#, VB.Net, C, C++, PHP

This algorithm finds the transpose of a given matrix. The transpose of a given matrix is formed by interchanging the rows and columns of a matrix.