Coding Paradise. Learn. Ask. Code. REPEAT.

Monday, 24 August 2015

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...

Popular Posts

Powered by Blogger.