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

  Modify your program to print a statement about each animal

Animals: Think of at least three different animals that have a common characteristic. Modify your program to print a statement about each animal

  Write a python program that generates a small web site

ICT112 Assignment - Generated Web Site for Sports Club. Your task is to write Python program that generates small web site for local sports club

  Write a program that asks for the users age

Write a program that asks for the user's age. Based on their response print "You can vote" (18 years old or older) or "You can't vote" and also whether or not he/she is a senior citizen (over 64). If senior citizen print "You're a Senior Citizen.

  Code a console-based program in python

CP1404/CP5632 2016 SP2/22/52 Assignment - Shopping List 1.0. You are to plan and then code a console-based program in Python 3, as described in the following information and sample output. This assignment will help you build skills using selection,..

  What prompted the authors to try and address

What is the question that this study is trying to answer and what prompted the authors to try and address this question?

  Write a program that will accept a string as an argument

In python write a program that will accept a string as an argument and return with the first letter of each sentence capitalized. Must use a for loop.

  Python errors

python errors, please correct them that are located in this program,

  Construction of the data dictionary

A first systematic step to a data science process, as we have learned from the lectures and practical sessions, is to construct a data dictionary for the dataset.

  Write a program that reads in words entered by the user

CSCI 1100 Computer Science Homework - Loops and Lists. Write a program that reads in words entered by the user and checks whether the word at least 8 characters

  Develop program which reads data file containing information

In this assignment you will write a program which reads a data file containing information in different formats, validates this data, and prints out a report incorporating this data.

  Describe what it actually does when called with a string

Describe what it actually does when called with a string argument. If it does not correctly check for lowercase letters, give an example argument.

  Tower of hanoi game

Tower of Hanoi game that you can let a player to move discs between the towers using a mouse - Each move consists of taking the upper disk from one of the pegs and sliding it onto another rod, on top of the other disks that may already be present o..

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