CSE321 – Homework 3 (Solution)

$ 20.99
Category:

Description

CSE321 – Introduction to Algorithm Design
1. Derive recurrence relations of the following algorithms and solve themto decide the complexity of the algorithms. Which algorithm would you prefer for the same problem, elaborate your answer.
(a) Algorithm alg1(L[0..n-1])
if (n==1) return L[0] else tmp = alg1(L[0..n-2]) if (tmp<=L[n-1]) return tmp else return L[n-1]
(b) Algorithm alg2(X[l..r])
if (l==r) return X[l] else flr = floor((l+r)/2) tmp1 = alg2(X[l..flr]) tmp2 = alg2(X[flr+1..r]) if (tmp1<=tmp2) return tmp1 else return tmp2
2. You are given a polynomial p(x) like
p(x) = anxn + an−1xn−1 + … + a1x + a0,
and you are supposed to write a brute-force algorithm for computing the value of the polynomial at a given point x0. Analyze the complexity of your brute-force algorithm, and discuss whether it is possible to design an algorithm that has better complexity. Don’t forget to implement your algorithm in Python.
3. You are asked to design a brute-force algorithm that counts the number ofsubstrings that start with a specific letter and end with another letter in a given text. For example, let the first letter be ’X’ and the last letter be ’Z’, there are four such substrings in TXZXXJZWX. Write your brute-force algorithm, analyze its complexity, and implement in Python.
1
4. A metric space consists of a set and a distance function. We are given ametric space that is made up of a set of n points in k-dimensional space and Euclidean distance function. Design a brute-force algorithm that gives the distance between the closest pair of points, and find the complexity of the algorithm.
(a) Write a brute-force algorithm that can find the most profitable cluster, provided that the cluster must contain a consecutive region. Explain the time complexity of the algorithm. For example, the most profitable cluster is (C-D-E-F) on table below.
(b) Write a divide and conquer algorithm that finds the maximum profit that belongs to the most profitable cluster (the cluster must contain a consecutive region), analyze its complexity, and write the Python code of the algorithm. For example, the maximum profit is 14 (C-D-E-F) on table below.
A B C D E F G
3 -5 2 11 -8 9 -5
Notes
2. No collaboration is allowed, the homework must be done individually.
3. The homework will be submitted in ZIP format. The file hierarchy willbe like:
CSE321 HW3 [StudentID].zip
| → CSE321 HW3 ANS [StudentID].pdf
| → polynomial [StudentID].py
| → count str [StudentID].py
| → cluster [StudentID].py
2

Reviews

There are no reviews yet.

Be the first to review “CSE321 – Homework 3 (Solution)”

Your email address will not be published. Required fields are marked *