Solution: Aldous-Broder as a Wall Adder
Understand the solution to the “Aldous-Broder as a Wall Adder” challenge.
We'll cover the following...
Solution
Let's execute the following solution code and see how it works:
Press + to interact
main.rb
aldous_broder_walladder.rb
class AldousBroder_WallAdderdef self.on(grid, start: grid.random_cell)# first, link every cell to its neighbors (removing all walls), so# that we can add the walls back as we gogrid.each_cell { |cell| cell.neighbors.each { |n| cell.link(n, false) } }cell = startvisited = Set.new([ cell ])while visited.count < grid.sizeneighbor = cell.neighbors.sample# here's the key: if the neighbor hasn't been visited before, look at# each of ITS neighbors. There must be a wall between it and any# neighbor that HAS been visited before---EXCEPT for the current# cell.if !visited.include?(neighbor)neighbor.neighbors.each do |n|next if n == cellneighbor.unlink(n) if visited.include?(n)endendvisited.add(neighbor)cell = neighborendgridendend
Code explanation
Line ...