[SOLVED] CECS328-Lab3

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You will receive the following solution file(s) instantly after successful payment:

zip file icon lab3-moxkl7.zip (609.2 KB)
Assignment Instructions Updated Recently? Submit Below and we will provide new Solution!
Submit New Instructions
πŸ”’ Securely Powered by:
Secure Checkout
5/5 - (1 vote)

Programming assignment 3.

Part A.

Implement a function called Quick_select to find the kth least element on a given array. (The average running time of your algorithm should be O(n))

  1. Request the user to enter a positive integer, and call it n.
  2. Generate n random integers between -100 to 100 and save them in array a.
  3. Print the generated array.
  4. Request the user to enter a number between 1 to n (k least element).
  5. Call your Quick_select function to find and print the kth least element.

Part B.

Modify your algorithm to return the max k numbers from an unsorted array. (The average running time of your algorithm should be O(n))

 

(Example: a = [4 2 0 10 1 6], k = 3 βž” Output = [4 10 6])

 

  • lab3-moxkl7.zip