Evaluate the performance of Fibonacci Search algorithm

Assignment Help Data Structure & Algorithms
Reference no: EM131908272

Data Structures & Algorithms Assignment

Task A: Searching

In this task, you are to write a MATLAB function and accompanying test harness to evaluate the performance of one of the following three array search algorithms: (i) Fibonacci Search, (ii) Exponential Search, (iii) Ternary Search. Use the code examples in Canvas for guidance (functions and test harnesses for Linear, Jump, and Binary search are provided). The test harness examples provided evaluate performance, in units of comparisons, up to N = 1024 in the best, average and worst case only for successful searches, and you are only required to examine this outcome (i.e., not unsuccessful searches).

In your test harness, remember to adjust the "expected" (clotted) lines to match the performance that you expected to see given the published asymptotic behaviours of these algorithms and/or your own deductions. It is recommended that you avoid a recursive implementation, since this will make counting comparisons more difficult and will also cause MATLAB to run very slowly.

Along with your code, you are to write a maximum of 300 words. Use 150 words to describe how your selected algorithm works, using figures (e.g., diagrams such as flow-charts), equations, and pseudocode, if these help. Next, you may write up to 150 words to evaluate how closely the algorithm's empirical performance matched what you expected to see, and how its performance compares to linear, jump and binary search algorithms. If there are discrepancies between expected and observed outcomes, try to explain why these differences occurred.

[300 words + code and graphs]

Task B: LCRS and K-ary Trees

You are to propose a set of theorems that describe the structure of LCRS trees (k-ary trees organised into the shape of binary trees with the left-child, right-sibling rule, also known as filial-heir chains) in relation to their equivalent k-ary tree. In particular, you a to present theorems that predict metrics of interest following forward and reverse Knuth transforms (i.e., the process of converting a k-ary tree into a LCRS tree and vice versa). Metrics of interest include numbers of edges, leaves, nodes, and interior nodes, tree height, tree and node balance, and number of nodes in each level. Theorems should relate these metrics to their equivalent values in the other tree type (e.g., if there are I leaf nodes in a 3-ary tree, what is the min, max, and actual number in the equivalent LCRS tree?).

You may wish to start with perfect k-ary trees and then proceed to generalise to k-ary trees that are complete, and then to neither perfect nor complete trees. You may also wish to start with a particular value of k (e.g., k = 3), and then verify that your theorems hold for other values of k, or adjust them accordingly to make them generalisable.

You are to use proof by induction to confirm your theorems. A proof by induction shows that the theorem holds when the independent variable is 1, then that it holds where the independent variable is n and finally where it is n + 1. Try to avoid using excessively small values of n. Typeset your formulas in Word using the equation editor and refer to them in the accompanying text (maximum 400 words, not including equations and figures) that describes concisely and accurately what each of the theorems tells us. Provide illustrations of trees for n. and n + 1 in your inductive proofs.

[400 words + equations]

Task C: Sorting

You are to write a MATLAB function and accompanying test harness to evaluate the performance of one of the following three comparison-based array sort algorithms: (i) Comb Sort, (ii) Gnome Sort, (iii) Pancake Sort. Use the examples in Canvas for guidance (functions and test harnesses for Selection and Bubble sort are to be provided). The test harness examples provided evaluate performance, in units of comparisons and moves, up to N = 102.4 in the best, average and worst case for arrays in random order (and are thus non-exhaustive).

In your test Harness, remember to adjust the "expected" (dotted) lines to match the performance that you would expect to see given the published asymptotic behaviours of these algorithms and/or your own deductions. It is recommended that you avoid a recursive implementation, since this will make counting comparisons and moves more difficult and will also cause MATLAB to run very slowly.

Along with your code, you are to write a maximum of 300 words. Use 150 words to describe how your selected algorithm works, using figures (e.g., diagrams such as flow-charts), equations, and pseudocode, if these help. Next, you may write up to 150 words to evaluate how closely the algorithm's empirical performance matched what you expected to see, and how its performance compares to selection, bubble and theoretically optimal, i.e. 0(rtlogn), sort algorithms. If there are discrepancies between expected and observed outcomes, try to explain why these differences occurred.

[300 words + code and graphs]

Task D: Asymptotic Notations

In this task, you are to write a brief report that attempts to explain in as straightforward a way possible, using appropriate equations, line graphs (figures), and code example(s), what the different asymptotic notations (sometimes called the Landau or Bachmann-Landau) tell us about an algorithm.

You are to imagine that your reader is a first year undergraduate student in Computer Science who understands interval notation, sequences and series, limits, line functions, infinity, summation and product notation, basic set theory, basic logic, has some exposure to universal and existential quantifier notation (V, 3), and knows one or two simple algorithms

The asymptotic notations to be explained are big-0 (0), little-0 (a), big-Omega (0), little-Omega (co), and big-Theta (0), along with the concepts of tight and loose bounds, and how these notations relate to the ideas of best, average and worst-case performance.

Include code listings for the examples used, which should adhere to good-practice guidelines.

[500 words + equations, graphs and code fragments]

Attachment:- Assignment Questions.rar

Reference no: EM131908272

Questions Cloud

Would you sell at discount or premium : what is the value of the bond if sold today? would you sell at a discount or premium? Why?
Share price of polycorp when it goes ex : The shares go ex-bonus tomorrow. "All else equal", what should happen to the share price of Polycorp when it goes ex?
Bring competition to the traditional institutions : These new market will bring competition to the traditional institutions i.e banks in the near future thus the balance sheets of banks will shrink.
Target capital structure : Pearson Motors has a target capital structure of 40% debt and 60% common equity, with no preferred stock.
Evaluate the performance of Fibonacci Search algorithm : In this task, you are to write a MATLAB function and accompanying test harness to evaluate the performance of Fibonacci Search algorithms
What is the type in excel : Use the FV function in Excel. The first payment is made at the beginning of the period. Is this an annuity or an annuity due? What is the type in Excel?
What is after-tax cost of debt : The Holmes Company's currently outstanding bonds have 9% coupon and a 14% yield to maturity. what is Holmes's after-tax cost of debt?
What are stocks and bonds : What are Stocks and Bonds? How you could estimate the values of stocks and bonds?
What does it mean that some of the provisions expire : What does it mean that some of the provisions expire in 2025? I'm a bit confused about that, can you please explain this to me?

Reviews

len1908272

3/20/2018 6:24:29 AM

Must use MATLAB to create matlab functions. Please do read carefully the pdf file all the details is in the pdf file. Include code listings for the examples used, which should adhere to good-practice guidelines. Include, at the start of your report, a print out of the checklist appearing on the next page, ticking each box to confirm that each of the guidelines listed has been adhered to. Confirm that my report is free from spelling, typographical and grammatical errors (i.e., I have carefully proof-read my work, and have used the Word spelling and grammar check functions). Confirm that figures created in MATLAB were exported using the print command at a minimum of 300 DPI before being inserted into my report, and that I have rescaled these figures without changing their aspect ratio, thereby maximising quality. Confirm that my code is well commented, paying particular attention to lines of code that are more difficult to understand on casual inspection.

Write a Review

Data Structure & Algorithms Questions & Answers

  Implement an open hash table

In this programming assignment you will implement an open hash table and compare the performance of four hash functions using various prime table sizes.

  Use a search tree to find the solution

Explain how will use a search tree to find the solution.

  How to access virtualised applications through unicore

How to access virtualised applications through UNICORE

  Recursive tree algorithms

Write a recursive function to determine if a binary tree is a binary search tree.

  Determine the mean salary as well as the number of salaries

Determine the mean salary as well as the number of salaries.

  Currency conversion development

Currency Conversion Development

  Cloud computing assignment

WSDL service that receives a request for a stock market quote and returns the quote

  Design a gui and implement tic tac toe game in java

Design a GUI and implement Tic Tac Toe game in java

  Recursive implementation of euclids algorithm

Write a recursive implementation of Euclid's algorithm for finding the greatest common divisor (GCD) of two integers

  Data structures for a single algorithm

Data structures for a single algorithm

  Write the selection sort algorithm

Write the selection sort algorithm

  Design of sample and hold amplifiers for 100 msps by using n

The report is divided into four main parts. The introduction about sample, hold amplifier and design, bootstrap switch design followed by simulation results.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd