Ask Computer Engineering Expert

In this assignment we will hope to demonstrate the efficiency of dictionaries over lists for certain types of tasks. Most specifically, the task will be looking up telephone numbers of people in a phonebook data structure.To do this you will write two programs: one that creates data files to process, and a second that does timing comparisons for phone number queries in two different data structures.

Program 1:

This program will create a data file containing a specified number of phone records. The program should ask the user for a file name and the desired number of records. Each record in the file will contain three values separated by spaces: a first name, a last name, and a phone number.

Write a generator function that will return a randomly generated phone record when called. For the random generation, we will use a different function from the random module called choice(). You can pass this function a string containing characters to choose from, and it will randomly pick one. For the random record do the following. For both the first and last name, create strings of length 4, where each character is a randomly chosen lower case letter. For the phone number, this can be 7 characters long, where each character is a randomly chosen digit, 0-9. Yield a list that contains these three values, similar to what we saw in class. This function should have one parameter, which is the total number of records it should generate. You can then iterate through these records using a for loop, and you can write one line to your data file for each record generated.

Program 2:

This program will do timing tests. It should begin by reading the name of a data file to process. You should iterate through the lines of this file to create a list of phone records, where each phone record is a list of the three values: first name, last name, and phone number. You should also write a binary search function, that when passed a list and a name, will return the phone number for that name if it exists, or the value None if it does not. Write an iterative binary search routine rather than a recursive function (which is slower). Include in your code the comparison function we wrote in class for comparing names for a sort.

Next you will do a timing comparison. For the first timing, you should begin by creating a sorted version of the phone record list. You can use the sorted() function and pass it the phone record list and the name of the name comparison function. Then write a loop that iterates through every name in the original list, calling the binary search function to locate the corresponding phone number in the sorted list. You do not need to print out the search results. To compute how much time the sorting and searching takes, you can using the time() function in the time module. By calling this function before you start a task, and then after you are done with the task, you can subtract these two values to determine how long the task took. Time the sorting process. Then time the search loop. You should print out these two times.

For the second timing, you should create a dictionary, where the key for the dictionary is a string formed of the last name and first name, with a comma in between (just like we did in class), and the value stored in the dictionary is the phone number. Then use the same loop that iterates through every name in the original list, looking up the name in the dictionary to locate the corresponding phone number. You do not need to print out the number. Time the dictionary creation process. Then time the search loop. You should print out these two times.

What to turn in:

You should turn in the source code for the two programs. You should use your first program to create a set of data files that range in size from 100 to 10 million phone records. Then run each of these files through your second program to get timing results. Make a small table that compares these timing values for each of the different file sizes to see how the performance of using a list degrades in comparison to using the dictionary. Submit this table as well.

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M91671953
  • Price:- $80

Priced at Now at $80, Verified Solution

Have any Question?


Related Questions in Computer Engineering

Does bmw have a guided missile corporate culture and

Does BMW have a guided missile corporate culture, and incubator corporate culture, a family corporate culture, or an Eiffel tower corporate culture?

Rebecca borrows 10000 at 18 compounded annually she pays

Rebecca borrows $10,000 at 18% compounded annually. She pays off the loan over a 5-year period with annual payments, starting at year 1. Each successive payment is $700 greater than the previous payment. (a) How much was ...

Jeff decides to start saving some money from this upcoming

Jeff decides to start saving some money from this upcoming month onwards. He decides to save only $500 at first, but each month he will increase the amount invested by $100. He will do it for 60 months (including the fir ...

Suppose you make 30 annual investments in a fund that pays

Suppose you make 30 annual investments in a fund that pays 6% compounded annually. If your first deposit is $7,500 and each successive deposit is 6% greater than the preceding deposit, how much will be in the fund immedi ...

Question -under what circumstances is it ethical if ever to

Question :- Under what circumstances is it ethical, if ever, to use consumer information in marketing research? Explain why you consider it ethical or unethical.

What are the differences between four types of economics

What are the differences between four types of economics evaluations and their differences with other two (budget impact analysis (BIA) and cost of illness (COI) studies)?

What type of economic system does norway have explain some

What type of economic system does Norway have? Explain some of the benefits of this system to the country and some of the drawbacks,

Among the who imf and wto which of these governmental

Among the WHO, IMF, and WTO, which of these governmental institutions do you feel has most profoundly shaped healthcare outcomes in low-income countries and why? Please support your reasons with examples and research/doc ...

A real estate developer will build two different types of

A real estate developer will build two different types of apartments in a residential area: one- bedroom apartments and two-bedroom apartments. In addition, the developer will build either a swimming pool or a tennis cou ...

Question what some of the reasons that evolutionary models

Question : What some of the reasons that evolutionary models are considered by many to be the best approach to software development. The response must be typed, single spaced, must be in times new roman font (size 12) an ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As