Create a Method of sorting method (Bubble Sort, Selection sort, Merge sort) and a method
of searching method (Linear Search, Binary Search, Jump Search). Write a method for
each algorithm that sorts or searches a given array of integers. The methods must take
one parameter which is the list. For the searching method one additional parameter
"search_value" must be passed because for searching you first need a value to search for.
Please check the following code snippet for clarity: