Given graph, how could i represent it using adj matrix?. I have read lots of tutorials, post, slides, etc but i cant get my head round it, i just need that little push.

|
Given graph, how could i represent it using adj matrix?. I have read lots of tutorials, post, slides, etc but i cant get my head round it, i just need that little push.
| ||||
|
feedback
|
|
Every letter-number combination is one node in your graph, i.e., from A0, A1, A2, ... to F5, F6, F7. Your graph has 48 (8 columns times 6 rows in your maze) nodes, so you'll need a 48x48 matrix. If you treat it as boolean, you'll set all fields to false except the ones where there is a connection between two nodes, e.g. A0 to A1 would mean that the A0 row has a true value in the A1 column, and vice versa (because your graph is undirected). | |||||||||||||||
feedback
|
|
Here's my attempt for the first horizontal line of the maze:
So you can see from this that your going to end up with a symmetrical matrix due to the undirected nature of your edges and that its going to be sparsely populated. EDIT: Matrix vs Lists The wikipedia entry for adjacency list has some good points on the algorithmic benefits of each. EDIT: | |||||||||||||
feedback
|
|
Another way would be to have 2
Similarly
| |||
|
feedback
|