This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.
DS & Algo
Binary Search
Binary search, also known as half-interval search, logarithmic search, or binary chop, is a search algorithm that finds the position...
Linear Search
Linear search or sequential search is a method for finding an element within a list. It sequentially checks each element of the list...
Check if an Array is Sorted
We will write a program to check if an array is sorted
Second Largest Element in an Array
We will write a program to find the second largest element in an array
Largest Element in an Array
We will write a program to find the largest element in an array.