๐Ÿ”– Background Information

According to Wikipedia (โ€œMonopoly (Game),โ€ 2025):

Monopoly is a multiplayer economics-themed board game. In the game, players roll two dice to move around the game board, buying and trading properties and developing them with houses and hotels. Players collect rent from their opponents and aim to drive them into bankruptcy.

The first half of the game where you buy up properties is mildly amusing. The second half of the game where you force players to pay massive fees when they land on your hotels is a great way to ruin friendships.

Your goal in this lab is to implement a Monopoly board using a circular linked list.

๐ŸŽฏ Problem Statement

Write a generic circular linked list that has the following functionality:

  1. You can append a node to the โ€œendโ€ of the list (i.e. right before the head pointer).
  2. You can retrieve the data stored at the current node in the list.
  3. You can step forward by one node in the list. Eventually, you should loop back to the beginning and go around again.

Then, populate your circular linked list with the Monopoly board data that I provided in the templates. Test out your board by stepping through it and making sure that your spaces are in the correct order.

โœ… Acceptance Criteria

  • I should be able to initialize a generic circular linked list that can store different types of primitives / objects
  • I should be able to append objects to the circular linked list
  • I should be able to step through all of the spaces on the Monopoly board

๐Ÿ“‹ Dev Notes

  • If you are having trouble getting started with this lab, check out this Programiz link which gives an overview of circular linked lists as well as some code samples (โ€œCircular Linked List,โ€ n.d.). But remember, you are tasked with writing a generic circular linked list while their examples include integers, specifically!

๐Ÿ–ฅ๏ธ Example Output

๐Ÿ“ Thought Provoking Questions

  1. How many pointers / indexes did you need to keep track of when implementing your Monopoly board?
  2. What would you need to change in your code if you wanted players to be able to move forwards or backwards on the board?
  3. What would you need to change in your code if you wanted players to be able to move directly to a specific node on the board (e.g. Go to Jail)?

๐Ÿ’ผ Add-Ons For the Portfolio

N/A

๐Ÿ“˜ Works Cited

Circular Linked List. (n.d.). In Programiz. Retrieved February 8, 2025, from https://www.programiz.com/dsa/circular-linked-list
Monopoly (Game). (2025). Wikipedia.