PROBLEM STATEMENT
Write a C program to perform insertion sort on an array of n elements.
Input Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in the array. The next n integers correspond to the elements in the array....
Monday, 24 August 2015
Insertion sort in C language
1 comment
Selection sort using C language
PROBLEM STATEMENT
SELECTION SORT
Write a C program to perform selection sort on an array of n elements.
Selection sort algorithm starts by comparing first two elements of an array and swapping if necessary, i.e., if you want to sort the elements of array in ascending order and if the first...
Sunday, 23 August 2015
Implementation of Binary Search in C
PROBLEM STATEMENT
Write a C program to implement Binary Search Algorithm.
Include a function
int BinarySearch (int, int, int *, int x) --- The 1st parameter is the lower limit of the list or array, the 2nd parameter is the upper limit of the list or array, the third parameter is a pointer to the array and the fourth parameter is the search element.
Please note that the index of the...
'Library fine' from Hackerrank solution in C language
Problem Statement
The Head Librarian at a library wants you to make a program that calculates the fine for returning the book after the return date. You are given the actual and the expected return dates. Calculate the fine as follows:
If the book is returned on or before the expected return date, no fine will be charged, in other words fine is 0.
If the book is returned in the same month as...
Saturday, 22 August 2015
Searching element in an array : C
PROBLEM STATEMENT
Searching an Array
Write a C program to search for an element ‘a’ in the array. (Linear Search)
Input Format:
Input consists of n+2 integers. The first integer corresponds to ‘n’ , the size of the array. The next ‘n’ integers correspond to the elements in the array. The last integer corresponds to ‘a’, the element to be searched.Assume that the maximum size of the...