Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Midterm Exam on Data Structure Algorithm Analysis | CSC 517, Exams of Computer Science

Material Type: Exam; Professor: Rosenberg; Class: Data Str Algrm Anl; Subject: Computer Science (CSC) ; University: University of Miami; Term: Fall 2004;

Typology: Exams

Pre 2010

Uploaded on 08/30/2009

koofers-user-yzp-1
koofers-user-yzp-1 🇺🇸

10 documents

1 / 7

Toggle sidebar

Related documents


Partial preview of the text

Download Midterm Exam on Data Structure Algorithm Analysis | CSC 517 and more Exams Computer Science in PDF only on Docsity! Burton Rosenberg CSC 517: Algorithms 1 Midterm October 11, 2004. 1:25–2:15 PM There are five problems each worth five points for a total of 25 points. Show all your work, partial credit will be awarded. Space is provided on the test for your work; if you use a blue book for additional workspace, sign it and return it with the test. No notes, no collaboration. Name: Problem Credit 1 2 3 4 5 Total CSC 517: Algorithms 4 3. Consider the following max-heap: 4 6   T T 10 3   T T 9 %% l l 16 11 5  ee 12  HHHH 18 Show (in pictures) the process of delete max on this heap. Show two iterations of delete max, that is, remove the 18 and then the 16 from the heap. CSC 517: Algorithms 5 4. You are given an array A[1 . . . n] of n integers and an integer value v. We are looking for an algorithm which finds indices i, j such that A[i] + A[j] = v, if possible, or indicates that this is not possible, that is, no two integers in the array sum to v. (a) Consider the algorithm which simply tries all possible indices. What is the run time for this algorithm? (b) Can you find an O(n log n) algorithm solving this problem? Hint: sort the array A. Now set i to 1 and j to n, and either increments i or decrements j depending on the comparison of values A[i]+A[j] to v. Argue the correctness and justify the runtime claim of your algorithm. CSC 517: Algorithms 6 5. Suppose that you are given n red and n blue water jugs, all of different shapes and sizes. All red jugs hold different amounts of water, as do the blue ones. Moreover, for every red jug, there is a blue jug that holds the same aount of water, and vice versa. It is your task to find a grouping of the jugs into pairs of red and blue jugs that hold the same amount of water. To do so, you may perform the following operation: pick a pair of jugs in which one is red and one is blue, fill the red jug with water, and then pour the water into the blue jug. The operation will tell you whether the red or the blue jug can hold more water, or if they are the same volume. Assume that such a comparison takes one time unit. Give an Θ(n2) algorithm which determines the grouping. For extra credit, your algorithm will be randomized and have expected run time O(n log n).
Docsity logo



Copyright © 2024 Ladybird Srl - Via Leonardo da Vinci 16, 10126, Torino, Italy - VAT 10816460017 - All rights reserved