Monthly Archive: December 2014

0

Merge Sort C Program Implementation

This is the Implementation of Sorting Algorithm Merge Sort in C merge sort (also commonly spelled mergesort) is an O(n log n) comparison-based sorting algorithm. Most implementations produce a stable sort, which means that...

0

C Program to Find GCD

This is the C Program to find the gcd or hcf of two numbers,there are two methods to find gcd,subtraction method and division method In mathematics, the greatest common divisor (gcd) of two or...

0

C Program to Find Sub String

This is the C Program to find the substring in c,it searches the whole string to find the substring and returns the position if it founds one #include #include main() { char string[100]; char...

0

Least Common Ancestor Java Program

In this tree, the lowest common ancestor of the nodes x and y is marked in dark green. Other common ancestors are shown in light green. This is the java program to find the...

0

C Program to Implement Binary Search

This is the C Program to Implement Binary Search Binary Search can be implemented both recursively and non recursively In computer science, a binary search or half-interval search algorithm finds the position of a...

0

C Program to Implement Bubble Sort

This is the C Program implementation of sorting algorithm,Bubble Sort Bubble sort has worst-case and average complexity both О(n2), where n is the number of items being sorted. There exist many sorting algorithms with...