logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Hariom KasyapFinance
(5/5)

699 Answers

Hire Me
expert
Dillon RamosResume writing
(5/5)

629 Answers

Hire Me
expert
Patrick GrahamEnglish
(5/5)

961 Answers

Hire Me
expert
StatAnalytica ExpertAccounting
(5/5)

803 Answers

Hire Me
Data structures & Algorithms

Let T 1 (n) be the total number of times that x = x + 1 executes the routine FindMyCompexity1 () and T 2 (n) the total number of times the command x = x + 1 is executed

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Exercise 1 [20 points]
Let T 1 (n) be the total number of times that x = x + 1 executes the routine
FindMyCompexity1 () and T 2 (n) the total number of times the command x = x + 1 is executed by
routine FindMyComplexity2 (). Calculate T 1 (n) and T 2 (n). Study the class (symbolism O)
of T 1 (n) and T 2 (n).
procedure FindMyComplexity1 (integer n)
for i = 1 to n do
for j = 1 to √ n do
for k = 1 to n - j +1 do x = x + 1;
}
procedure FindMyComplexity2 (integer n)
for i = 1 to 2n do
if (i% 2 == 1) then
for j = i to 2n do x = x + 1;
}
Exercise 2 [25 points]
a. Which of the following is true and why?
i. n 5 - 5n 3 - 5n 2 +10 = Θ (n 5 )
ii.
(2 * (2))
1
n
i
i
+

=
= O (n 2 )
iii. min (2 70 , n 3 log n) = Θ (1)
b. Consider the asymptotic complexity (based on the symbolism I) of the function
f (n) = n 2 log n 3 + n 2
n - n 2 log n -3
Page 2
Exercise 3 [25 points]
Resolve the following retroactive replacement relationships.
a.
[7M]
b.
, where c is an integer constant. [8M]
For the retrospective relationship of question a. the following are requested:
i. Design the backdrop
[5M]
ii. Verify, using mathematical induction, that the solution you found with iterative
replacement is correct.
[5M]
Exercise 4 [30 points]
Consider the following retrospective algorithm, which is executed on a non-sorted
table of integers T [s ... u] with n = u-s + 1 = 2 k (k> 0), where s, u, u> s are positive integers which
specify the first and last element of the table.
int RecursiveF (table T: array of int, int s, int u) {
int middle; int val;
if (us == 0) return T [s];
middle = ⌊ (s + u) / 2 ⌋ ;
for j = s to middle do {
if (T [j]> T [j + middle]) then
swap (T [j], T [j + middle]);
}
val = RecursiveF (T, s, middle);
return val;
}
a. What does RecursiveF calculate? Please provide a brief description of how it works. [7M]
b. Track RecursiveF (T, 1.8) for case T = [20,4,40,60,34,16,38,2]. Present
a brief description of how the algorithm works.
[8M]
c. Formulate a retrospective relationship for the RecursiveF runtime ().
[5M]
d. Solve the retroactive relationship you proposed in question c. and study (based on
of symbols O and Z) the order of its complexity.
[5M]
e. What is the spatial complexity of the algorithm (that is, how much memory is needed to execute it
the algorithm);
[5M]
Google Translate
Original text
Παναγιώτα Φατούρου
Contribute a better translation

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme