Describe your analysis in terms of general n

Assignment Help Python Programming
Reference no: EM132354757

Question

For each function, a rough analysis of its running time in terms of n (where n is the length of the input list a, i.e. n=len(a)) and where n=10,000.

For example, if your function looks like this: def riddle(a): s=0 for x in a: for y in a: s = s+ x*y return s Then you would write: This function has two nested for loops. The inner loop executes 10,000 times for each step of the outer loop, which also executes 10,000 times.

Therefore, this function performs roughly 10,000*10,000=100,000,000 operations. If your function uses python's sort() method or python's sorted() function to sort the list a, just say that that function call does about 140,000 operations (since python's sort does roughly n log_2 n operations).

Alternatively, if you prefer, you can write your analysis in terms of general n. Thus for the above function riddle, one would say that its running time is O(n^2).

Write a function, largest_34(a), that returns the sum of the 3rd and 4th largest values in the list a. For simplicity, you may assume that the numbers in the list a are all distinct and that the list a has at least 4 elements. For example: >>> largest_34([1000, 1, 100, 2, 99, 200, -100]) 199.

Reference no: EM132354757

Questions Cloud

What are the five principle areas : OECD (Organisation for economic co-operation and development) principle of co-orporate governance offers a framework around which various issues
What is the weighted average contribution margin : Bag C sells for $9 and has variable costs of $6.00 per unit. Miller sells in a mix of 2 units of A, 3 Units of B and 5 Units of C.
Integrating total quality-six sigma and lean approach : "Towards an Integration of the Lean Enterprise System, Total Quality Management, Six Sigma and Related Enterprise Process Improvement Methods."
What is dive-dip margin of safety : Fixed costs are $81,000. Dive&Dip expects sales of 274,200 next year. What is Dive & Dip margin of safety (in dollar)?
Describe your analysis in terms of general n : Write a function, largest_34(a), that returns the sum of the 3rd and 4th largest values in the list a. write your analysis in terms of general n.
Investment of retained earnings : Assume GO's shares outstanding remains constant and all earnings growth comes from the investment of retained earnings.
Prints a table showing the integers from 1 through 10 : Prints a table showing the integers from 1 through 10 and their squares. Your output should be formatted neatly in columns as shown.
Weighted average cost of capital to evaluate a new project : When using the weighted average cost of capital to evaluate a new project, the firm's WACC can depend on all of the following except the:
Write a function draw which prints a line of n occurrences : Write a function showMax(a, b, c) which prints the largest of distinct integers a, b, and c to the screen. Write an interactive script to test showMax.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

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