II Assignment 4 – Balanced Search Trees Solution

$24.99 $18.99

Important Note Please do not start the assignment before reading the notes in HAND IN section (last two pages): 1) Question Part (40 points) Assume that we have the following balanced-searched tree implementations: AVL tree 2-3 tree 2-3-4 tree Starting with an empty balanced search tree, we would like to insert the following keys into…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:

Description

5/5 – (2 votes)

Important Note

Please do not start the assignment before reading the notes in HAND IN section (last two pages):

1) Question Part (40 points)

Assume that we have the following balanced-searched tree implementations:

  1. AVL tree

  1. 2-3 tree

  1. 2-3-4 tree

Starting with an empty balanced search tree, we would like to insert the following keys into the tree in the given order:

50, 70, 90, 115, 95, 100, 80, 125, 105, 110, 140

and then, delete the keys 95 125 105 (in the given order) from the tree. Note: while deleting an internal node,its inorder successor should be used as the substitute if needed.

Show the structure for the AVL, 2-3, and 2-3-4 trees after additions and deletions with sufficient detail.

2) Programming Part (60 points)

You are to write a C++ program to count the frequency (number of occurrences) of unique words in a text file. You may ignore any capitalizations and assume that words in the text file are separated with whitespaces and punctuations. For example; the word “you’ll ” will be counted as two different words “you” and “ll”. Your program should construct an AVL tree and consider each word as a key.

You are to use a pointer based implementation of an AVL tree to store the words and their counts. Each node object is to maintain the associated unique word as a string, its current count as an integer, and left and right child pointers. On top of the regular operations that a AVL has, you must implement the following functions (you don’t need to implement delete procedure of AVL tree):

1

  • addWord: adds the specified word in the AVL if not already there; otherwise, it simply increments its count.

  • generateTree: reads the input text and generates a AVL tree of words. In this function you should detect all of the words in the input text and add them to the tree by using theaddWordfunction.

  • printHeight: computes and prints the height of the AVL tree

  • printTotalWordCount: recursively computes and prints the total number of unique words currently stored in the tree (number of elements in the tree).

  • printWordFrequencies: recursively prints each unique word in the tree in alphabetical order along with their frequencies in the text file.

  • printMostFrequent: finds and prints the most frequent word with its frequency in the text file.

  • printLeastFrequent: finds and prints the least frequent word with its frequency in the text file.

  • printStandartDeviation: computes and prints the standart deviation of word frequencies in the text file.

The program must be compiled using a Makefile you provided and it should run with the following command. Whenever its computation is finished it should produce two output files, named as “wordfreqs” and “statistics”. Sample execution will be as follow (As you can see input file name will be given as parameter in command line):

./avlfreq <input_filename>

Output files will be produced in the directory your program executed and contain the followings:

wordfreqs:This file will contain each unique word with its frequency on each line. Words must be printed in alphabetical order.

Sample:

at 4

….

hello 22

yellow: 40

2

statistics:This file will contain statistics about input text file and the avl tree in following format:

Sample:

Total Word Count: 50

Tree Height: 8

Most Frequent: yellow 40

Least Frequent: at 4

Standard Deviation: 5,76

Code Format, Notifications and Turn In

This homework will be graded by your TA, Süleyman Aslan (suleyman.aslan at bilkent edu tr).Thus, you may ask your homework related questions directly to him.

You have to follow the following instructions about the format, programming style and general layout of your program.

  • You can use the codes provided in your textbook or the lecture slides. However, you cannot use any external data structure implementations such as STL’s in your code.

  • This assignment is due by 23:55,August 16,2020. You should upload your solutions to Moodle. You should upload asingle zipfile that contains:

    1. Your solution to the first part aspdf(do NOT send photos of your solution).

    1. Code files (only the “.cpp” and “.h” files that you write for the homework) of the second part and a “Makefile” for the compilation of your code that produces the executable.

    1. In the end, your zip file should contain ONLYcode files,“Makefile” and apdf;any violation of these causes a significant loss from your grade. Name of the pdf should be “Surname-Name.pdf”.

  • Do not forget to put your name and student id in all of these files. Well comment on your implementation. Add a header comment to the beginning of each file as follows:

/**

    • Title: AVL Trees

    • Author: Firstname LastName

    • ID: 21000000

    • Assignment: 4

    • Description: description of your code

*/

  • If you do not know how to write a Makefile, you can find lots of tutorials on the Internet. Basically they are files that contain a list of rules for building an executable that is used by “make” utility of Unix/Linux environments. “make” command should build an executable called

3

avlfreq”, so write your Makefile accordingly (i.e. at the end, when you type “make” in terminal

on your working directory, it should produce “avlfreq” executable)

  • The test file is available on Moodle next to this document. It is James Joyce’sDubliners (https://en.wikipedia.org/wiki/Dubliners). Please note that your program will be tested with additional data.

IMPORTANT:

  • Although you may use any platform or any operating system to implement your algorithms and obtain your experimental results, your code should work on thedijkstra server (dijkstra.ug.bcc.bilkent.edu.tr). We will compile and test your programs on that server. If your C++ code does not compile or execute in that server, you will lose points.

  • Attention: For this assignment, you are allowed to use the codes given in our textbook and/or our lecture slides. However, you ARE NOT ALLOWED to use any codes from other sources (including the codes given in other textbooks, found on the Internet, belonging to your classmates, etc.). Furthermore, you ARE NOT ALLOWED to use any data structure or algorithm related function from the C++ standard template library (STL).

Do not forget that plagiarism and cheating will be heavily punished. Please do the homework yourself.

4

II Assignment 4 – Balanced Search Trees Solution
$24.99 $18.99