ARIZONA STATE UNIVERSITY CSE 310, SLN 21622 — Data Structures and Algorithms — Spring 2021 Instructor: Dr. Violet R. Syrotiuk Project #2 Milestone due Monday, 03/08/2021; complete project due...

1 answer below »
Please, complete the assignment


ARIZONA STATE UNIVERSITY CSE 310, SLN 21622 — Data Structures and Algorithms — Spring 2021 Instructor: Dr. Violet R. Syrotiuk Project #2 Milestone due Monday, 03/08/2021; complete project due Wednesday, 03/24/2021 This project implements myAppStore in which applications of various categories are indexed simultaneously by a hash table, a max-heap, and by a binary search tree (BST) for optimal support of various queries and updates of your store. Note: This project must be completed individually, i.e., you must write all the code yourself. Your imple- mentation must use C/C++ and ultimately your code must run on the Linux machine general.asu.edu. All dynamic memory allocation for the hash table, max-heap, and BST must be done yourself, i.e., using either malloc() and free(), or new() and delete(). You may not use any external libraries to implement any part of this project, aside from the standard libraries for I/O and string functions (stdio.h, stdlib.h, string.h, and their equivalents in C++). If you are in doubt about what you may use, you must ask me for permission. By convention, your program should exit with a return value of zero to signal that all is well; various non-zero values signal abnormal situations. Remember that you must use a version control system as you develop your solution to this project. Your code repository must be private to prevent anyone from plagiarizing your work. In this project, your submission will require a snap shot of the commits you have made to demonstrate your development. 1 The myAppStore Application Applications for mobile phones are available from a variety of online stores, such as iTunes for Apple’s iPhone, and Google Play for Android phones. In this project you will write an application called myAppStore. First, you will populate myAppStore with data on applications under various categories. The data is to be stored simultaneously in both a hash table to support fast look-up of an application, in a binary search tree (BST) to support range queries, and also in a max-heap to support selection queries. Relevant definitions are provided in the defn.h file. Once you have populated myAppStore with application data, you will then process queries about the apps and/or perform updates in your store. 1.1 myAppStore Application Data Structures The myAppStore application must support n categories of applications. Allocate an array of size n of type struct categories, which includes the name of the category, and a pointer to the root of a BST holding applications in that category. 1.1.1 Binary Search Tree for Categories There is a separate BST for each category of applications. For example, if n = 3, and the three categories are “Games,” “Medical,” and “Social Networking,” then you are to allocate an array of size 3 of struct categories and initialize each position to the category name and a pointer to the root of a BST for applications in that category (initially nil). 1 #define CAT_NAME_LEN 25 struct categories{ char category[ CAT_NAME_LEN ]; // Name of category struct bst *root; // Pointer to root of BST for this category }; // Dynamically allocate an array of size n of type struct categories (here using malloc) struct categories *app_categories = (struct categories *) malloc( n * sizeof( struct categories ) ); Each node of the BST for a category contains a record for the application and a pointer to the left and right subtrees; see struct app info, and struct bst, respectively. The BST is to be ordered on the application name app name field. struct bst{ // A binary search tree struct app_info record; // Information about the application struct bst *left; // Pointer to the left subtree struct bst *right; // Pointer to the right subtree }; For each application, its category, name, version, size in units (GB or MB), and price are provided in that order in the data set. #define APP_NAME_LEN 50 #define VERSION_LEN 10 #define UNIT_SIZE 3 struct app_info{ char category[ CAT_NAME_LEN ]; // Name of category char app_name[ APP_NAME_LEN ]; // Name of the application char version[ VERSION_LEN ]; // Version number float size; // Size of the application char units[ UNIT_SIZE ]; // GB or MB float price; // Price in $ of the application }; First, you are to populate myAppStore with m applications. For each application, allocate a node of type struct bst. The node contains a structure of type struct app info; initialize the structure. Now, search the array of categories, to find the position matching the category of the application. Insert the node as a leaf into the BST for that application category. 1.1.2 Max-Heap A max-heap is constructed in processing a find max price apps query. It is ordered on the price of an app and is simply an array of floats. // Dynamically allocate the heap an array of size c of floats (here using malloc); // c is the number of entries in the category specified in the query float *heap = (float *) malloc( c * sizeof( float ) ); See §1.2 for details on allocating and deallocating a heap. Unlike the BSTs, and the hash table (described next), a heap only exists only to process the find max price apps query, i.e., it gets allocated to process the query, and deallocated when the query processing is complete. 2 1.1.3 Hash Table For the full project deadline, you must also insert each application into a hash table using the app name as the key. Only the app name and a pointer to the node just inserted into the BST storing the full application record are to be stored in the hash table (not any of the other fields of app info). The hash table is to be implemented using separate chaining, with a table size k that is the first prime number greater than 2×m. (You may find the boolean function in the file prime.cc provided to you useful; it returns true if the integer parameter is a prime number and false otherwise.) That is, a hash table of size k containing entries of type struct hash table entry * is to be allocated and maintained. struct hash_table_entry{ char app_name[ APP_NAME_LEN ]; // Name of the application struct bst *app_node; // Pointer to node in the BST containing the application information struct hash_table_entry *next; // Pointer to next entry in the chain }; // Declare hash table; dynamically allocate it as an array of size k of pointers // to hash_table structures and initialize each (pointer) entry to NULL hash_table_entry **hash_table; hash_table = (struct hash_table_entry **) malloc( k * sizeof(struct hash_table_entry * ) ); for( i = 0; i < k;="" i++="" )="" hash_table[="" i="" ]="NULL;" the="" hash="" function="" is="" computed="" as="" the="" sum="" of="" the="" ascii="" value="" of="" each="" character="" in="" the="" application="" name,="" modulo="" the="" hash="" table="" size.="" for="" example,="" if="" a="" game="" is="" named="" sky="" and="" the="" hash="" table="" size="" is="" 11,="" then="" the="" hash="" function="" value="" is:="" (83="" +="" 107="" +="" 121)="" mod="" 11="311" mod="" 11="3," because="" the="" ascii="" value="" is="" 83="" for="" s,="" 107="" for="" k,="" and="" 121="" for="" y.="" that="" is,="" the="" app="" name="" and="" a="" pointer="" to="" the="" node="" inserted="" into="" the="" bst,="" is="" inserted="" at="" the="" head="" of="" the="" chain="" at="" position="" 3="" of="" the="" hash="" table.="" 1.2="" myappstore="" queries="" and="" updates="" once="" myappstore="" is="" populated="" with="" m="" applications,="" you="" are="" ready="" to="" process="" q="" queries="" and="" updates.="" when="" all="" queries="" and="" updates="" are="" processed,="" if="" requested="" your="" myappstore="" application="" is="" to="" collect="" characteristics="" of="" the="" data="" structures="" constructed,="" and="" then="" terminate="" gracefully.="" graceful="" termination="" means="" your="" program="" must="" deallocate="" all="" dynamically="" allocated="" data="" structures="" that="" you="" created="" before="" it="" terminates.="" in="" the="" following,=""><> bracket variables, while the other strings are literals. In all cases, application names () and category names () in queries are within double quotes because some application and category names include spaces; see §1.3 sample input for examples of queries. There are 6 queries that myAppStore must be able to process: 1. find app , searches the hash table for the application named . If found, it prints Found Application: and then follows the pointer to the node in the search tree to print the record associated with the application (i.e., the contents of the struct app info, with each field tab indented and labelled on a separate line); otherwise it prints Application not found. substituting the parameter app name given in the command. 2. find max price apps , prints an ordered list of apps with maximum price in the given . If the does not exist, prints Category not found., substituting the parameter category name given in the command. If the is found but the tree is empty, then print Category no apps found. Otherwise, this is accomplished as follows: Obtain a count, c, of the number of apps (i.e., the number of nodes) in the BST from a recursive divide-and-conquer algorithm. Allocate storage for a heap of size c. Tra- verse the BST using an in-order traversal, initializing heap entries linearly as a vertex is visited. Once 3 initialized, call your implementation of the Build-Max-Heap function discussed in class to transform the unordered array into a max-heap. Then, use a Maximum function to return the maximum element of the heap. Now perform an in-order traversal of the BST again, this time only printing the apps whose price matches the maximum. Print the tab indented name of the application (field app name in the record), i.e., this results in a list of maximum priced applications of the given category in sorted order by app name. Finally, delete the storage allocated for the heap. 3. print-apps category , prints an ordered list of applications in the given . If the is found but the tree is empty, then print Category no apps found. If the is found and the tree is not empty, print Category: , then performs an in-order traversal of the BST for the category, printing the tab indented name of the application (field app name in the record), i.e., this results in a list of applications of the given category in sorted order by app name. If the does not exist, prints Category not found., substituting the parameter category name given in the command. 4. find price free , prints an ordered list of free applications in the given If the is found but the tree is empty, then print Category no free apps found. If the is found and the tree is not empty, print Free apps in ategory: , then
Answered 2 days AfterMar 23, 2021

Answer To: ARIZONA STATE UNIVERSITY CSE 310, SLN 21622 — Data Structures and Algorithms — Spring 2021...

Pulkit answered on Mar 26 2021
147 Votes
c++/defn.h
#include    
#define    CAT_NAME_LEN    25
#define    APP_NAME_LEN    50
#define    VERSION_LEN    10
#define    UNIT_SIZE    3
struct app_info{
    char category[ CAT_NAME_LEN ]; // Name of category
    char app_name[ APP_NAME_LEN ]; // Name of the application
    char version[ VERSION_LEN ]; // Version number
    float size; // Size of the application
    char units[ UNIT_SIZE ]; // GB or MB
    float price; // Price in $ of the application
};
struct tree{ // A binary search tree
    struct app_info info; // Information about the application
    struct tree *left; // Pointer to the left subtree
    struct tree *right; // Pointer to the right subtree
};
struct categories{
    char category[ CAT_NAME_LEN ]; // Name of category
    struct tree *root; // Pointer to root of search tree for this category
};
struct hash_table_entry{
char app_name[ APP_NAME_LEN ]; // Name of the application
struct tree *app_node; // Pointer to node in tree containing the application information
struct hash_table_entry *next;// Pointer to next entry in the chain
};
c++/p2-vqibjrmy.pdf
ARIZONA STATE UNIVERSITY
CSE 310, SLN 21622 — Data Structures and Algorithms — Spring 2021
Instructor: Dr. Violet R. Syrotiuk
Project #2
Milestone due Monday, 03/08/2021; complete project due Wednesday, 03/24/2021
This project implements myAppStore in which applications of various categories are indexed simultaneously
by a hash table, a max-heap, and by a binary search tree (BST) for optimal support of various queries and
updates of your store.
Note: This project must be completed individually, i.e., you must write all the code yourself. Your imple-
mentation must use C/C++ and ultimately your code must run on the Linux machine general.asu.edu.
All dynamic memory allocation for the hash table, max-heap, and BST must be done yourself, i.e., using
either malloc() and free(), or new() and delete(). You may
not use any external libraries to implement
any part of this project, aside from the standard libraries for I/O and string functions (stdio.h, stdlib.h,
string.h, and their equivalents in C++). If you are in doubt about what you may use, you must ask me
for permission.
By convention, your program should exit with a return value of zero to signal that all is well; various
non-zero values signal abnormal situations.
Remember that you must use a version control system as you develop your solution to this project.
Your code repository must be private to prevent anyone from plagiarizing your work. In this project, your
submission will require a snap shot of the commits you have made to demonstrate your development.
1 The myAppStore Application
Applications for mobile phones are available from a variety of online stores, such as iTunes for Apple’s
iPhone, and Google Play for Android phones.
In this project you will write an application called myAppStore. First, you will populate myAppStore
with data on applications under various categories. The data is to be stored simultaneously in both a hash
table to support fast look-up of an application, in a binary search tree (BST) to support range queries, and
also in a max-heap to support selection queries. Relevant definitions are provided in the defn.h file.
Once you have populated myAppStore with application data, you will then process queries about the
apps and/or perform updates in your store.
1.1 myAppStore Application Data Structures
The myAppStore application must support n categories of applications. Allocate an array of size n of type
struct categories, which includes the name of the category, and a pointer to the root of a BST holding
applications in that category.
1.1.1 Binary Search Tree for Categories
There is a separate BST for each category of applications. For example, if n = 3, and the three categories
are “Games,” “Medical,” and “Social Networking,” then you are to allocate an array of size 3 of struct
categories and initialize each position to the category name and a pointer to the root of a BST for
applications in that category (initially nil).
1
#define CAT_NAME_LEN 25
struct categories{
char category[ CAT_NAME_LEN ]; // Name of category
struct bst *root; // Pointer to root of BST for this category
};
// Dynamically allocate an array of size n of type struct categories (here using malloc)
struct categories *app_categories = (struct categories *) malloc( n * sizeof( struct categories ) );
Each node of the BST for a category contains a record for the application and a pointer to the left
and right subtrees; see struct app info, and struct bst, respectively. The BST is to be ordered on the
application name app name field.
struct bst{ // A binary search tree
struct app_info record; // Information about the application
struct bst *left; // Pointer to the left subtree
struct bst *right; // Pointer to the right subtree
};
For each application, its category, name, version, size in units (GB or MB), and price are provided in
that order in the data set.
#define APP_NAME_LEN 50
#define VERSION_LEN 10
#define UNIT_SIZE 3
struct app_info{
char category[ CAT_NAME_LEN ]; // Name of category
char app_name[ APP_NAME_LEN ]; // Name of the application
char version[ VERSION_LEN ]; // Version number
float size; // Size of the application
char units[ UNIT_SIZE ]; // GB or MB
float price; // Price in $ of the application
};
First, you are to populate myAppStore with m applications. For each application, allocate a node of type
struct bst. The node contains a structure of type struct app info; initialize the structure. Now, search
the array of categories, to find the position matching the category of the application. Insert the node as a
leaf into the BST for that application category.
1.1.2 Max-Heap
A max-heap is constructed in processing a find max price apps query. It is ordered on
the price of an app and is simply an array of floats.
// Dynamically allocate the heap an array of size c of floats (here using malloc);
// c is the number of entries in the category specified in the query
float *heap = (float *) malloc( c * sizeof( float ) );
See §1.2 for details on allocating and deallocating a heap. Unlike the BSTs, and the hash table (described
next), a heap only exists only to process the find max price apps query, i.e., it gets
allocated to process the query, and deallocated when the query processing is complete.
2
1.1.3 Hash Table
For the full project deadline, you must also insert each application into a hash table using the app name as
the key. Only the app name and a pointer to the node just inserted into the BST storing the full application
record are to be stored in the hash table (not any of the other fields of app info). The hash table is to be
implemented using separate chaining, with a table size k that is the first prime number greater than 2×m.
(You may find the boolean function in the file prime.cc provided to you useful; it returns true if the integer
parameter is a prime number and false otherwise.) That is, a hash table of size k containing entries of type
struct hash table entry * is to be allocated and maintained.
struct hash_table_entry{
char app_name[ APP_NAME_LEN ]; // Name of the application
struct bst *app_node; // Pointer to node in the BST containing the application information
struct hash_table_entry *next; // Pointer to next entry in the chain
};
// Declare hash table; dynamically allocate it as an array of size k of pointers
// to hash_table structures and initialize each (pointer) entry to NULL
hash_table_entry **hash_table;
hash_table = (struct hash_table_entry **) malloc( k * sizeof(struct hash_table_entry * ) );
for( i = 0; i < k; i++ )
hash_table[ i ] = NULL;
The hash function is computed as the sum of the ASCII value of each character in the application name,
modulo the hash table size. For example, if a game is named Sky and the hash table size is 11, then the
hash function value is: (83 + 107 + 121) mod 11 = 311 mod 11 = 3, because the ASCII value is 83 for S, 107
for k, and 121 for y. That is, the app name and a pointer to the node inserted into the BST, is inserted at
the head of the chain at position 3 of the hash table.
1.2 myAppStore Queries and Updates
Once myAppStore is populated with m applications, you are ready to process q queries and updates. When
all queries and updates are processed, if requested your myAppStore application is to collect characteristics
of the data structures constructed, and then terminate gracefully. Graceful termination means your program
must deallocate all dynamically allocated data structures that you created before it terminates.
In the following, <> bracket variables, while the other strings are literals. In all cases, application names
() and category names () in queries are within double quotes because some
application and category names include spaces; see §1.3 sample input for examples of queries.
There are 6 queries that myAppStore must be able to process:
1. find app , searches the hash table for the application named . If found, it
prints Found Application: and then follows the pointer to the node in the search tree
to print the record associated with the application (i.e., the contents of the struct app info, with
each field tab indented and labelled on a separate line); otherwise it prints Application
not found. substituting the parameter app name given in the command.
2. find max price apps , prints an ordered list of apps with maximum price in the
given . If the does not exist, prints Category
not found., substituting the parameter category name given in the command. If the
is found but the tree is empty, then print Category no apps found. Otherwise,
this is accomplished as follows: Obtain a count, c, of the number of apps (i.e., the number of nodes)
in the BST from a recursive divide-and-conquer algorithm. Allocate storage for a heap of size c. Tra-
verse the BST using an in-order traversal, initializing heap entries linearly as a vertex is visited. Once
3
initialized, call your implementation of the Build-Max-Heap function discussed in class to transform
the unordered array into a max-heap. Then, use a Maximum function to return the maximum element
of the heap. Now perform an in-order traversal of the BST again, this time only printing the apps
whose price matches the maximum. Print the tab indented name of the application (field app name in
the record), i.e., this results in a list of maximum priced applications of the given category in sorted
order by app name. Finally, delete the storage allocated for the heap.
3. print-apps category , prints an ordered list of applications in the given .
If the is found but the tree is empty, then print Category no
apps found. If the is found and the tree is not empty, print Category: ,
then performs an in-order traversal of the BST for the category, printing the tab indented name of
the application (field app name in the record), i.e., this results in a list of applications of the given
category in sorted order by app name. If the does not exist, prints Category
not found., substituting the parameter category name given in the command.
4. find price free , prints an ordered list of free applications in the given
If the is found but the tree is empty, then print Category no
free apps found. If the is found and the tree is not empty, print Free apps in
ategory: , then performs an in-order traversal of the BST for the category, print-
ing the tab indented name of the application (field app name in the record) of apps whose price is
free, i.e., this results in a list of free applications of the given category in sorted order by app name.
If the does not exist, prints Category not found., substituting
the parameter category name given in the command.
5. range price , for the given , performs an in-order
traversal of the BST, printing the tab indented name of the each application whose price is greater than
or equal to (float) and less than or equal to (float) on a separate line with the header
Applications in Price Range (,) in Category: . If no applica-
tions are found whose price is in the given range print No applications found in
for the given price range (,). substituting the parameters given in the command.
If the does not exist, prints Category not found., substituting
the parameter category name given in the command.
6. range app , for the given , performs an in-order
traversal of the BST, printing the tab indented names of the applications whose application name
(app name) is alphabetically greater1 than or equal to (quoted string) and less than or equal
to (quoted string) with the header Applications in Range (,) in Category:
. If no applications are found whose name is in the given range print No applications
found in for the given range (,). substituting the parameters
given in the command.
There is only one update that myAppStore must be able to process, and one reporting command:
1. delete , first searches the hash table for the application with name
. Then it first deletes the entry from the search tree of the given , and then
also deletes the entry from the hash table. Finally, it prints Application from Category
successfully deleted. If the application is not found it prints Application
not found in category ; unable to delete. substituting the pa-
rameters given in the command.
2. The last command is either report or no report. If it is report, then you are to collect characteristics
of the data structures you’ve constructed and report them as described in §3 for your report. There is
no format specified for this output; it should be useful for you in generation of your report. If the last
command is no report then no statistics are collected.
1This is standard lexicographic order, i.e., how a dictionary is ordered. The strcmp function returns the ordering required.
4
1.3 Sample Input
The following is sample input myAppStore must process. You may assume that the input is in the correct
format. Note that double quotes are not required in the input when reading in the apps, because each field
for an app is on a separate line. (The comments are not part of the input.)
The input is to be read from stdin (or redirected from a file to stdin). This project involves no file I/O.
3 // n=3, the number of app categories
Games // n=3 lines containing the names of each of the n categories
Medical
Social Networking
4 // m=4, number of apps to add to myAppStore; here all in Games
Games // Each field in app_info is provided in order; first the name of the category
Minecraft: Pocket Edition // Name of the application
0.12.1 // Version number of the application
24.1 // Size of the application
MB // Units corresponding to the size, i.e., MB or GB
6.99 // Price of the application
Games // Start of record for the second app
FIFA 16 Ultimate Team
2.0
1.25
GB
0.00
Games // Start of record for the third app
Candy Crush Soda Saga
1.50.8
61.3
MB
0.00
Games // Start of record for the fourth app
Game of Life Classic Edition
1.2.21
15.3
MB
0.99
11 // q=11, number of queries and/or updates to process
find app "Candy Crush Soda Saga" // List information about the application
print-apps category "Medical" // List all applications in the Medical category
find price free "Games" // List all free applications in Games category
range "Games" app "A" "F" // List alphabetically all Games whose name is in the range A-F
print-apps category "Social Networking" // List all apps in the Social Networking category
range "Games" price 0.00 5.00 // List all names of Games whose price is in the range $0.00-$5.00
delete "Games" "Minecraft" // Delete the game Minecraft from the Games category
print-apps category "Games" // List all applications in the Games category
find max price apps "Games" // List all applications in Games with maximum price
find app "Minecraft" // Application should not be found because it was deleted
no report // do not produce hash table and tree statistics
5
2 Program Requirements for Project #2
1. Write a C/C++ program that implements all of the queries and updates described in §1.2 on data in
the format described in §1.1. You must build all dynamic data structures, i.e., the hash table,
the max-heap, and the BSTs, by yourself from scratch. All memory management must
be handled using only malloc and free, or new and delete.
2. Your program must use a modular design. That is, at the minimum, your program must have:
• the main program in the file main.cc (or other valid C/C++ extension),
• the prime.cc and defn.h file provided to you,
• your implementation of the max-heap in the file heap.cc,
• your implementation of the hash table in the file hash.cc,
• your implementation of the BST in the file bst.cc, and
• your implementation of any utility functions in the file util.cc.
Each source file may also have a correspondingly named .h file if needed.
3. If the last command is report, then collect characteristics of the data structures you’ve constructed
and report them as described in §3 for your report. If the last command is no report then no statistics
are collected.
4. Provide a makefile that compiles and links the individual executables into a single executable named
myAppStore when make myAppStore is executed. This executable must run on general.asu.edu,
compiled by a C/C++ compiler that is installed on that machine, reading input from stdin (of course,
you may redirect stdin from a file in the prescribed format).
Sample input files that adhere to the format described in §1.1 will be provided on Canvas; use them to
test the correctness of your program.
3 Characteristics of the Data Structures
For the binary search tree associated with each category: Print the category name, a count of the total
number of nodes in the tree, the height of the tree, the height of the root node’s left subtree, and the height
of the root node’s right subtree.
For the hash table: Print a table that lists for each chain length `, 0 ≤ ` ≤ `max, the number of chains
of length `, up to the maximum chain length `max that your hash table contains. In addition, compute...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here