In this video tutorial we shall see how we can search for a number in an array in linear fashion.…
We assume that a[0] has first biggest and a[1] has the second biggest value. Now check if this assumption is…
First we have to assume that a[0] is biggest. Now store the value of a[0] inside a variable called big.…
In this video tutorial we illustrate the bubble sort algorithm and also see how to write it in C programming,…
Selection sort is a sorting technique which is inefficient on large list of elements. Its simple and easy to understand.…