SlideShare a Scribd company logo
1.Write the recursive Fibonacci algorithm and its recursive relation?
2.Derive the complexity of binary search algorithm.
3.Write down the properties of Big-oh notation.
4. Derive the worst case analysis of Merge Sort
5. Suppose W satisfies the following recurrence equation and base case (where c is a constant) :
W(n) = c.n + W(n/2) and W(1) = 1. What is the asymptotic order of W(n).
6. Define convex hull.
7. Sort the following using mergesort
310, 285, 179, 652, 351, 423, 861, 254
8. Discuss briefly about divide and conquer technique.
9. Differentiate Exhaustive search and divide and conquer technique
10. Briefly explain time complexity and space complexity

More Related Content

PDF
SMU MCA SUMMER 2014 ASSIGNMENTS
DOCX
Smu mca sem 1 winter 2014 assignments
DOCX
SMU ,CA FALL 2014 ASSIGNMENTS
DOCX
Smu mca sem 1 spring 2015 assignments
PPT
Writing Equations Of Lines
PDF
Problem set3 | Theory of Computation | Akash Anand | MTH 401A | IIT Kanpur
PDF
Deep Recurrent Neural Networks with Layer-wise Multi-head Attentions for Punc...
DOC
Dsd previous year university questions
SMU MCA SUMMER 2014 ASSIGNMENTS
Smu mca sem 1 winter 2014 assignments
SMU ,CA FALL 2014 ASSIGNMENTS
Smu mca sem 1 spring 2015 assignments
Writing Equations Of Lines
Problem set3 | Theory of Computation | Akash Anand | MTH 401A | IIT Kanpur
Deep Recurrent Neural Networks with Layer-wise Multi-head Attentions for Punc...
Dsd previous year university questions

What's hot (20)

PDF
Complex exercises
DOCX
Sem 1 mca summer 2014 solved assignments
PPTX
5.1 writing linear equations day 1
PDF
Module#8 notes
PDF
7th PreAlg - L56--Feb7
PPTX
Presentation on Breadth First Search (BFS)
PDF
CRMS Calculus 2010 May 3, 2010
PDF
Lesson 9: The Derivative as a function
PPTX
Sa dsi, dki
PDF
8th PreAlg - L56--Jan30
PDF
Ch02
PPTX
Second derivative and graphing
PPTX
Normal forms
PPT
Graph traversal-BFS & DFS
PDF
Pc 4.5 notes_graphing
PPTX
Breadth First Search (BFS)
PDF
L5 & l6 relations
PPTX
(floyd's algm)
PPT
Integration Ppt
Complex exercises
Sem 1 mca summer 2014 solved assignments
5.1 writing linear equations day 1
Module#8 notes
7th PreAlg - L56--Feb7
Presentation on Breadth First Search (BFS)
CRMS Calculus 2010 May 3, 2010
Lesson 9: The Derivative as a function
Sa dsi, dki
8th PreAlg - L56--Jan30
Ch02
Second derivative and graphing
Normal forms
Graph traversal-BFS & DFS
Pc 4.5 notes_graphing
Breadth First Search (BFS)
L5 & l6 relations
(floyd's algm)
Integration Ppt
Ad

Recently uploaded (20)

PDF
LDMMIA Reiki Yoga S2 L3 Vod Sample Preview
PDF
Module 3: Health Systems Tutorial Slides S2 2025
PDF
PG-BPSDMP 2 TAHUN 2025PG-BPSDMP 2 TAHUN 2025.pdf
PPTX
How to Manage Loyalty Points in Odoo 18 Sales
PPTX
NOI Hackathon - Summer Edition - GreenThumber.pptx
PDF
High Ground Student Revision Booklet Preview
PDF
Sunset Boulevard Student Revision Booklet
PPTX
Presentation on Janskhiya sthirata kosh.
PPTX
ACUTE NASOPHARYNGITIS. pptx
PPTX
Introduction and Scope of Bichemistry.pptx
PDF
UTS Health Student Promotional Representative_Position Description.pdf
PDF
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
PPTX
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
PPTX
Nursing Management of Patients with Disorders of Ear, Nose, and Throat (ENT) ...
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
LDMMIA Reiki Yoga Workshop 15 MidTerm Review
PDF
Types of Literary Text: Poetry and Prose
PPTX
Software Engineering BSC DS UNIT 1 .pptx
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
LDMMIA Reiki Yoga S2 L3 Vod Sample Preview
Module 3: Health Systems Tutorial Slides S2 2025
PG-BPSDMP 2 TAHUN 2025PG-BPSDMP 2 TAHUN 2025.pdf
How to Manage Loyalty Points in Odoo 18 Sales
NOI Hackathon - Summer Edition - GreenThumber.pptx
High Ground Student Revision Booklet Preview
Sunset Boulevard Student Revision Booklet
Presentation on Janskhiya sthirata kosh.
ACUTE NASOPHARYNGITIS. pptx
Introduction and Scope of Bichemistry.pptx
UTS Health Student Promotional Representative_Position Description.pdf
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
Nursing Management of Patients with Disorders of Ear, Nose, and Throat (ENT) ...
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
LDMMIA Reiki Yoga Workshop 15 MidTerm Review
Types of Literary Text: Poetry and Prose
Software Engineering BSC DS UNIT 1 .pptx
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
Week 4 Term 3 Study Techniques revisited.pptx
Ad

2 marks(i & ii)

  • 1. 1.Write the recursive Fibonacci algorithm and its recursive relation? 2.Derive the complexity of binary search algorithm. 3.Write down the properties of Big-oh notation. 4. Derive the worst case analysis of Merge Sort 5. Suppose W satisfies the following recurrence equation and base case (where c is a constant) : W(n) = c.n + W(n/2) and W(1) = 1. What is the asymptotic order of W(n). 6. Define convex hull. 7. Sort the following using mergesort 310, 285, 179, 652, 351, 423, 861, 254 8. Discuss briefly about divide and conquer technique. 9. Differentiate Exhaustive search and divide and conquer technique 10. Briefly explain time complexity and space complexity