John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

Status: Tags: Links: [[


CMPT 125 Searching and Sorting Practice Problems

Searching and Sorting

Problems

  1. How many comparisons and will Binary Search make on input A = [1,2,3,4,5,6,7] when searching for 5? ?
  1. How many comparisons and how many swaps will SelectionSort perform on the array A = [3, 5, 1, 8, 4]? Explain your answer. Write some intermediate steps of the algorithm when necessary.
    ?
  1. How many swaps will InsertionSort perform on the array A = [3, 5, 1, 8, 4]? Explain your answer. Write some intermediate steps of the algorithm when necessary.
    ?
  1. Consider the Quicksort algorithm that chooses as a pivot the first element of the array. How many swaps will it perform on the array A = [6,1,2,3,4,5]? Explain your answer. Write some intermediate steps of the algorithm when necessary.

  2. Consider the Quicksort algorithm that chooses as a pivot the last element of the array. How many swaps will it perform on the array A = [6,1,2,3,4,5]? Explain your answer. Write some intermediate steps of the algorithm when necessary.

  3. Consider the MergeSort algorithm (with linear time merging we saw in class). How many comparisons will it perform on the array A = [5,4,3,2,1,4,7,8]? Explain your answer. Write some intermediate steps of the algorithm when necessary.

  4. Give an example of an array of length n on which InsertionSort makes exactly 1 swap in each iteration of the outer loop.

  5. Give an example of an array of length 6 on which InsertionSort makes a total of 15 swaps.

  6. Prove that on any array of length 6 InsertionSort makes at most 15 swaps.

  7. What is the running time of InsertionSort on a sorted array?


Backlinks


References:

Created:: 2021-10-24 12:10


Interactive Graph