Skip to content

Manage unplaceable tile #2

Description

@SnowyCoder

There are some situations in which you cannot place the tile you drew from the bag, these should be found and managed correctly.
To find this situation multiple solutions may be implemented.
I want to write down a quite efficient solution: Storing the available spaces in a Trie<Array, TilePosition> will allow us to index the empty slots in a way that will support O(1) insertions and deletions.
The idea is simple: each empty tile near a card should be indexed in the trie with the expected sides (or null if all sides are possible). When a card is drawn, the program can match the card sides against the trie (this isn't a primitive query but it can be implemmented quite easily).

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions