Learn

Our pathfinding method works when a path exists, but there is a serious bug! We’re not accounting for cycles in our graph.

Consider the following undirected Graph:

railway = Graph() callan = Vertex('callan') peel = Vertex('peel') ulfstead = Vertex('ulfstead') harwick_station = Vertex('harwick') railway.add_vertex(callan) railway.add_vertex(peel) railway.add_vertex(harwick) railway.add_vertex(ulfstead) railway.add_edge(peel, harwick) railway.add_edge(harwick, callan) railway.add_edge(callan, peel) railway.find_path(peel, ulfstead)

Peel connects to Harwick and Callan. We look for a path starting at peel, adding harwick and callan to the start list. Next, we look at harwick, adding peel and callan. We’ll keep adding the same vertices, and our loop will never terminate.

When a path exists, return True will exit the loop. When a path does not exist, it’s a major problem!

We’ll use a dictionary to track which stations we’ve visited. This will stop our passengers from riding around in circles.

Instructions

1.

Replace the commented code near start with a seen variable that begins as an empty dictionary.

2.

Replace the commented code after we declare current_vertex. Set the key of the current_vertex as True in our seen dictionary.

3.

Replace the commented code before we add to the start list.

Change the next_vertices list, so it only includes vertices that are not in our seen dictionary.

4.

Test out our improved .find_path() method!

Tab over to script.py, uncomment the relevant code and run our script.

Sign up to start coding

Mini Info Outline Icon
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.

Or sign up using:

Already have an account?