FDS Assignment ALL 6 UNITS
FDS Assignment ALL 6 UNITS
Describe Asymptotic notation- Big-O, Theta and Omega CO1 1,2,3,4, PSO1 2 5
Q1.
With example. 7,12 PSO2
Discuss Divide and Conquer strategy with suitable example. CO1 1,2,3,4, PSO1 2 5
Q2
Comment on its time complexity. 7,12 PSO2
Describe Algorithm design tools: Pseudo code and flowchart CO1 1,2,3,4,5,7 1,2 2 5
Q3 ,12
Define and explain following terms: 1)data 2)data structure CO1 1,2 PSO1 1 5
Q5 3) Algorithm 4) sequential organization 5) linear data PSO2
structure
What are the application of simple queue and priority CO6 1,2,3,4,7 PSO1 3 5
Q3 queue? ,12 PSO2
Implement queue using linked list. CO6 1,2,3,4,7 PSO1 3 5
Q4
,12 PSO2
Consider the following queue of characters CO6 1,2,3,4,7 PSO1 3 5
,implemented as array of 6 memory location:- ,12 PSO2
Front =2, Rear=4
Queue: - _, A, D, _, _, _
Where ‘_’ denotes empty cell. Describe the queue
as the following operations take place
Q5
1. Add ‘S’,
2. Add ‘J’
3. Delete two letters
4. Shift toward left to bring all free
spaces to the right side.
5. Inset M, H, I and delete on letter.