Starting from:
$35

$29

HW3 Solution


Many entities, such as Olympic events, can be organized in a hierarchy. How would you design a system that stores the hierarchy and allow queries on the hierarchy?

The goal of HW3 is to build a tree from Winter Olympic events and answer queries on the tree. The Winter Olympics have multiple sports, each sport has multiple events, and each event has three winners (usually). In the tree, the sports and events are ordered alphabetically/lexicographically and the winners are ordered in gold-silver-bronze order. For simplicity, assume each event has only 3 winners. Your submission includes a Tree class that has a linked structure of tree nodes and supports (at least) the following operations:

insertChild(parentNode, childNode) // to maintain alphabetical/lexicographical order appendChild(parentNode, childNode) // to maintain order of addition

getChildren(node) getParent(node)

For each node, you may not assume it has a xed or maximum number of children. Sample input and output are on the course website.

We will evaluate your submissions on code01. t.edu so we strongly recommend you to test your programs on code01. t.edu.

To preserve invisible characters, we strongly recommend you to download, NOT copy and paste, input data    les.

Input:    Input is from the command-line arguments for hw3.c in this order:

    1. lename of the data|each line has an entity followed by its childern: the rst line has the Olympics year followed by its sports, each sport is followed by its events, each event is followed by its winners in gold-silver-bronze order. Each winner has the athlete and country separated by a colon.

    2. lename of queries, each line has one of the following queries:

GetEventsBySport sport

GetWinnersAndCountriesBySportAndEvent sport event

GetGoldMedalistAndCountryBySportAndEvent sport event GetAthleteWithMostMedals

GetAthleteWithMostGoldMedals GetCountryWithMostMedals

GetCountryWithMostGoldMedals

GetSportAndEventByAthlete athlete

You may assume each query is valid (sport and event exist in the data). If ties exist for most (gold) medals, output ties in alphabetical order.

Output:    Output goes to the standard output (screen), each line has an answer with the corresponding query:

GetEventsBySport sport event1 event2 ...

GetWinnersAndCountriesBySportAndEvent sport event athleteG: countryG athleteS: countryS athleteB: countryB

GetGoldMedalistAndCountryBySportAndEvent sport event athlete: country

GetAthleteWithMostMedals numberOfMedals athlete [athlete2 ... in alphabetical order if ties exist]

GetAthleteWithMostGoldMedals numberOfGoldMedals athlete [athlete2 ... in alphabetical order if ties exist] GetCountryWithMostMedals numberOfMedals country [country2 ... in alphabetical order if ties exist]

GetCountryWithMostGoldMedals numberOfGoldMedals country [country2 ... in alphabetical order if ties exist] GetSportAndEventByAthlete athlete sport1: event1 ... in alphabetical order [none]

Submission: Submit hw3.c that has the main method and other program les. Submissions for Indvidual and GroupHelp have the same guidelines as HW1.

Note the late penalty on the syllabus if you submit after the due date and time as speci ed at the top of the assignment.




1

More products