1 Initial Setup
2 Supporting Different Kinds of Scores
3 Supporting Different Kinds of Contestants
4 Data Validity
5 Reflecting on Your Work
6 What to Turn In

Assignment 1: Modeling and Implementing Tournaments (Advanced)

Due: Tuesday, Nov 1 at 11:59pm via Turnin

Many tournaments are organized into elimination rounds, in which pairs of remaining contestants play a match and the winner advances onto the next round. In this assignment, we will model and implement programs over tournaments in Java.

This is a more challenging version of the standard assignment on tournaments. While it does not assume material beyond what we have done in class, it exercises that material at a deeper level. Enjoy!

The assignment unfolds in stages, to keep the presentation more manageable. Submit only the final classes/interfaces/etc you have after finishing all the problems (rather than the classes that you had after each stage). Be sure to include an Examples class with all of your examples of data and test cases.

1 Initial Setup

As a starting point, the following Scheme/Racket data definitions capture the elimination rounds of the Soccer World Cup:

;; A tournament is either

;; - (make-init-match match-data)

;; - (make-advance-match match-data tournament tournament)

(define-struct init-match (data))

(define-struct advance-match (data feeder1 feeder2))

 

;; a match-data is (make-match-data string string soccer-score)

(define-struct match-data (team1 team2 score))

 

;; a soccer-score is (make-soccer-score number number boolean)

(define-struct soccer-score (goals1 goals2 extra-time?))

Develop class and interface definitions as needed to capture soccer tournaments.

2 Supporting Different Kinds of Scores

The same core notion of tournaments could capture the baseball World Series and tennis Grand Slams, but scores in these sports have a different structure. Baseball scores look like:

;; a baseball-score is

;;   (make-baseball-score number number number)

(define-struct baseball-score (runs1 runs2 total-innings))

Tennis scores are more complicated. A tennis match is divided into sets (up to 3 in women’s matches and up to 5 in men’s matches). For each set, the score reports how many games each player won. Whoever wins more games wins the set. Whoever wins more sets wins the match. For example, the following table shows a match in which Maria won the first and third sets and Annie won the second set. Maria won the match.

       set1  set2  set3

Maria   6     3     6

Annie   4     6     2

Extend your class hierarchy to also support baseball and tennis scores.

3 Supporting Different Kinds of Contestants

Different tournaments have different notions of contestants: baseball and soccer are team sports, while tennis is an individual sport (we’ll ignore doubles). Soccer and tennis both track rankings (so top-ranked competitors won’t face each other in an early tournament round).

Generalize the type of contestants in your match-data class to players that could be teams and/or ranked (or neither). In particular:

4 Data Validity

  1. The rules within a sport often imply that real scores satisfy certain constraints. For example, baseball games require at least 9 innings and may not end in a tie. The type of a baseball score (three numbers) isn’t rich enough to capture these constraints. We therefore want to write a function to check that scores are valid (by the rules of the corresponding sport).

    Write a method isValid on scores that determines whether the score is valid for its corresponding sport. In particular:

    • Soccer scores: If the two teams have the same number of goals, extra time had to have been played.

    • Baseball scores: at least 9 innings must have been played and the two teams may not have the same number of runs.

    • Tennis scores: women’s matches have at most 3 sets, while men’s matches have at most 5 sets. Add a way to distinguish between men’s and women’s matches if you haven’t already. (There are many more constraints to tennis scores, but we’ll ignore them in this assignment).

    Your code should require every score (even those for other sports that we might add later) to have an isValid method.

  2. Write a method allScoresValid on tournaments that determines whether every match in the tournament has a valid score.

  3. Just as games have rules that restrict valid scores, tournaments also have a notion of validity. For this assignment, we are interested in two conditions:

    • The players in each advance-match won a feeder match in the previous round (for example, you can’t make it into the final match without having won the semi-finals).

    • In tournaments for sports with player rankings, no initial match is between players in the same half of the ranking (in other words, all players in the top half of the ranking compete against a player in the lower half of the ranking in the first round).

    Write a method tourValid on tournaments that produces a boolean indicating whether the tournament meets these two conditions. Your solution should include implementing the hasBetterRanking method required of ranked contestants (from section 3).

  4. Write a method matchesPlayed on tournaments that consumes a contestant name and produces the number of matches in the tournament in which the named contestant played.

5 Reflecting on Your Work

Answer these questions in a text file called questions.txt (no word or pdf files please!). Don’t edit your code to meet the criteria in the questions – simply answer them based on the code you submitted.

  1. How does your code require every score to have an isValid method?

  2. Does your data definition formally capture that soccer and tennis contestants are similar in having ranks? If yes, how? If no, what change to your code would achieve that?

  3. Did your matchesPlayed method assume a valid tournament in which winners always advance? If yes, explain where you used that assumption and how you checked for it. If no, explain where you could have used that assumption and where you would have checked for it.

  4. Does your implementation of hasBetterRanking require the two contestants to be in the same sport? How or why not?

  5. How does your tourValid implementation handle the additional invariant on ranked tournaments without duplicating common code about all valid tournaments?

6 What to Turn In

Submit .java files containing the final versions of all classes, interfaces, and examples developed for this assignment. Do not submit the .class files. You may submit either a separate file for each class/interface (standard for Java) or a single file containing all classes and interfaces. Also submit your questions.txt file. Submissions do not need to be zipped.