Btech Cs 5 Sem Design and Analysis of Algorithms Rcs 502 2018 19
Btech Cs 5 Sem Design and Analysis of Algorithms Rcs 502 2018 19
B TECH
(SEM V) THEORY EXAMINATION 2018-19
DESIGN & ANALYSIS OF ALGORITHMS
Time: 3 Hours Total Marks: 70
Note: 1. Attempt all Sections. If require any missing data; then choose suitably.
2. Any special paper specific instruction.
SECTION A
b. Define BNP, NP hard and NP Complete Problems. Prove that Travelling Salesman
Problem is NP-Complete.
c. Consider the weights and values of items listed below. Note that there is only one unit of
each item. The task is to pick a subset of these items such that their total weight is no
more than 11 Kgs and their total value is maximized. Moreover, no item may be split. The
total value of items picked by an optimal algorithm is denoted by Vopt. A greedy
algorithm sorts the items by their value-to-weight ratios in descending order and packs
them greedily, starting from the first item in the ordered list. The total value of items
picked by the greedy algorithm is denoted by Vgreedy. Find the value of Vopt − Vgreedy
Item I1 I2 I3 I4
W 10 7 4 2
V 60 28 20 24
d. Insert the following keys in a 2-3-4 B Tree:
40, 35, 22, 90, 12, 45, 58, 78, 67, 60 and then delete key 35 and 22 one after other.
e. Prove that if the weights on the edge of the connected undirected graph are distinct then
there is a unique Minimum Spanning Tree. Give an example in this regard. Also discuss
Prim’s Minimum Spanning Tree Algorithm in detail.
SECTION C
3. Attempt any one part of the following: 7x1=7
(a) The recurrence T (n) = 7T (n/3) + n2 describes the running time of an algorithm A.
Another competing algorithm B has a running time of S (n) = a S (n/ 9) + n2. What is the
smallest value of ‘a’ such that A is asymptotically faster than B.?
(b) How will you sort following array A of elements using heap sort:
A = (23, 9, 18, 45, 5, 9, 1, 17, 6).
(b) Insert the elements 8, 20, 11, 14, 9, 4, 12 in a Red-Black Tree and delete 12, 4, 9, 14
respectively.
(b) Given an integer x and a positive number n, use divide & conquer approach to write a
function that computes xnwith time complexity O (logn).