Use the first-fit bin packing algorithm to determine how the eleven numbers listed above can be packed into bins of size 14
The list of numbers is to be sorted into ascending order. Use a quick sort to obtain the sorted list. You should show the result of each pass and identify your pivots clearly.
Apply the first-fit decreasing bin packing algorithm to the sorted list to pack the numbers into bins of size 14
Explain why the number of bins used in part (c) is optimal.
Use the binary search algorithm to try to locate 3.0 in the list of numbers.
Clearly indicate how you choose your pivots and which part of the list is rejected at each stage.