Compsci related math question
SuperClassDepartment of Computer Science CompSci 220 (2013 S2C) Assignment 1: Algorithm Analysis Due: 2013-08-08 Give full details of your argument. Questions 1. (30 marks) Suppose that you have to choose between three algorithms A1;A2 and A3 for a given problem. The worst-case running time for each algorithm is given by W1(n) = 100n; W2(n) = 2n log10 n; W3(n) = 0:1n2: Answer the following questions, explaining your assumptions and possible limitations of your analysis. (a) Order the algorithms from fastest to slowest in the sense of asymptotic worst-case running time. (b) Suppose that we run each algorithm on a large problem instance of size n. Then we feed in an input of size 100n and re-run the algorithms on the new input. What would you expect to happen to the running times, and why? (c) Suppose that hardware limitations mean that your algorithm can only accept input of size at most 106. Which algorithm would you prefer, and why? Answer the same question with 106 replaced by 103. (d) For which problem sizes is A1 the best algorithm to use? Answer the same question for A2 and then for A3. (e) Suppose that we have 109 time units available. What is the maximum input size that can be processed by each of the algorithms in that time? 2. (20 marks) Formally show that 0:1n + 10pn is not O(pn) using the denition of O only. 3. (25 marks) Consider the obvious algorithm for checking whether a list of integers is sorted: start at the beginning of the list, and scan along until we rst nd a successive pair of elements that is out of order. In that case, return false. If no such pair is found by the time we reach the end of the list, return true. Our elementary operation is a comparison between two integers. (a) What is the worst case running time of this algorithm on an input list containing n elements? Write all 5-element input lists which contain the numbers 1; 2; 3; 4; 5 and yield the worst case. (b) What is the best case running time of this algorithm on an input list with n...
10 years ago
Purchase the answer to view it

- compsci_related_math_question.docx