[Tutor] "Path tree"

Alan Gauld alan.gauld at yahoo.co.uk
Wed Aug 16 05:22:12 EDT 2017


On 16/08/17 02:02, Cameron Simpson wrote:

> Ok. So you have a graph like this:

>   1 -- 2 -- 3 -- 4
>        |
>   7 -- 5 -- 6 -- 8
> 
>   graph = {
>     1: [2],
>     2: [1, 3],

      2: [1, 3, 5],

>     3: [2, 4],
>     4: [3],
>     5: [7, 6],

      5: [2, 6, 7],

>     6: [5, 8],
>     7: [5],
>     8: [6]
>   }

The missing link is pretty critical in this case :-)

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos




More information about the Tutor mailing list