Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

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

You really need help with this assignment with step by step

You really need help with this assignment with step by step instructions on how to complete it. Using SQL Developer and SQL Plus 1. Create role customer_entry 2. Grant role customer_entry permission to update OE.CUSTOMER ...

Discuss the importance of metadata and some of the various

Discuss the importance of metadata and some of the various ways (Microsoft) SQL Server allows you to expose that information. References welcomed to learn where to find obscure IT information (books, articles, websites)

Introduction to software developmentmenu-driven

Introduction to Software Development Menu-Driven Programs TASKS: Language translator. Design a program that display the following menu: Select a language and I will say Good Morning English Italian Spanish German End the ...

Bierco is a beer company based in germany you purchased the

BierCo is a beer company based in Germany. You purchased the stock in 2011 for 100 Euros when the exchange rate was 1.4 EUR/ USD. Today BierCo's price is 120 Euros and the exhange rate is 1.12 EUR/USD. What is the dollar ...

Review the interactive session on pages 50 and 51 in

Review the Interactive Session on pages 50 and 51 in Management Information Systems: Managing the Digital Firm (11th ed.) of your text. It discusses Air Canada. Answer "Case Study Questions" 1 through 3 on page 51. 1. Ho ...

Suppose a firm is employing all its inputs so that the mrp

Suppose a firm is employing all its inputs so that the MRP per dollar spent on each sentence is the same. this suggest that: a) amount of each resource employed will depend on both its price and its productivity b) price ...

Simulate a dispatcher using a priority queue system in cnew

Simulate a dispatcher using a priority queue system in C. New processes are to be entered using a GUI with priority included (numbering should be automatic). Processes are also to be terminated by GUI command. Context sw ...

Research pythons dictionary data type dict discuss its

Research Python's dictionary data type (dict). Discuss its interface and usage. Include examples. Discuss practical applications of dictionaries. And also Discuss the concepts and purpose of hashing. Include examples of ...

A survey of 200 students is selected randomly on a large

A survey of 200 students is selected randomly on a large university campus. They are asked if they use a laptop in class to take notes. The results of the survey is that 70 of the 200 students responded yes. Calculate th ...

Show the entries for the header of a udp user datagram that

Show the entries for the header of a UDP user datagram that carries a message from a TFTP client to a TFTP server. Fill the checksum field with zeros. Choose an appropriate ephemeral port number and the correct well-know ...

  • 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