Searching
Searching

Searching is an Algorithm where we can find if an element is an list of elements or not. If the array is sorted, Binary Search is generally used due to its less time complexity. Otherwise, Linear Search is used.

Visit  
Sorting
Sorting

Sorting is an Algorithm where the elements in an list can be arranged such that they are strictly inreasing or decreasing. Bubble Sort and Inserton Sort are one of the famous sorting techniques.

Visit