C Snake And Ladder Game Projectors

четверг 27 сентября

Hello people! In this post, we will discuss about the Snakes and Ladders Game Code, where we find the shortest path to win the Snakes and Ladders game by using the Breadth First Search (BFS) Algorithm. If you don’t know the algorithm, I suggest you read my post on. Now, Graph Theory has many applications and I love working with things that have real-world applications, well, off course the other data structures too have their uses, but the speciality of Graph Theory is its applications have the closest association with our day-to-day activities.

Nov 7, 2014 - This is only for students who are developing mini projects with Turbo C / C++ Compiler. This example may help you to get an idea in submitting.

And to show you this and to set an example on how the BFS is actually put into action, I am taking up the example of the very popular game, Snakes and Ladders. This game needs no introduction. We all must have played it in our childhood. I will explain you, how by using Graphs and BFS we can find the Shortest Path to win the game, and, we will state that path and the number of moves of dice it takes too. Have a good look at the Snakes and Ladder board below, we will be using it as an example throughout this post. Snakes and Ladders You can see we can reach the finish block by an number of ways, but how do you find out the best?

More importantly, how do you put it as code? That’s what we are going to do.

Now, think of how you can represent the game board in terms of a Graph, by Graph I mean in terms of Vertices and Edges. Don’t be too hard on yourself Just take the first 7 blocks and try working out on paper what would be the Edge and what would be the Vertices. If you ponder upon this, it is very easy to tell that the numbered blocks on the game board will be our Vertices, then, what will be the Edges? This depends on how you can go from one block to another on rolling the dice. For now, forget about the ladders and the snakes, just draw the graph for a small portion of the board. It should look somewhat similar to what is in the picture below –. Dice Roll for Block 1 – 5 If you roll 5 from block 1 you will jump directly to block 27.

So is for block 2 when you roll out 4, or, block 3 when you roll out 3 and so on. Now, “logically” speaking, the block 6 does not exists in our graph! Think about the statement for a while. Whenever you reach block, you are directly jumping to block 27, you don’t stay there. Now, if you were constructing an Adjacency List for this graph.

In the list of adjacent vertices for Vertex 1, would you have Vertex 6 in the list, or Vertex 27? Vertex 27 of course! Being at Vertex 6 means being at Vertex 27! Laura vergani meccanica dei materia list.

That is why, our edge arrow did not end at Vertex 6 See it? One more thing, in your Adjacency List, in the list of adjacent vertices for Vertex 6, what would you have? Because you cannot come to a situation where you would have to stay on Vertex 6 and roll the dice.

So the adjacent nodes list corresponding to Vertex 6 should be empty. These two things are very important, when you implement the Adjacency List for the Snake and Ladder board. Same would be the case, if a snake was there at a block. Logically that block will not exist as a vertex in our adjacency list, and the corresponding edges must be removed. The only difference being that, the edge created due to a snake can lead you to a block of lower value. Adjustments to the Adjacency List That pic should really clarify all the confusion about the graph. If you still don’t get it, feel free to comment your query!

Now, what do we do once we have the Adjacency List ready? We just call the Breadth First Search method on that list! Wait Really?! You see the hardest part here in solving the Snakes and Ladder by graphs is correctly determining what your Vertices and Edges are. Once you get that, all you have to do is the Breadth First Search in the resultant graph. Then you can get the shortest path from Vertex 1 to Vertex 100. Now, try getting the Adjacency Lit correct and simply call the BFS method.

I’m sure you will succeed if you put in a little dedication. But for those who tried and failed. I have put my code below. Before you look at my code, there are a few logics I have used – • In the beginning of the program, I added all the edges as though the Game Board had no snakes or ladders at all (these number of edges is what I printed), then, I removed the respective edges concerning the snakes and ladders one-by-one. • When a Vertex ‘n’ has a ladder or a snake, we are supposed to replace the corresponding edges as I depicted in the pictures above, for that, I replaced the Vertex n‘s edge with the new value, in Vertices (n – 1), (n – 2), (n – 3), (n – 4), (n – 5), (n – 6).

Because it is only in these vertices that you can find an edge of vertex n. • I put all this replacing stuff in a function replace() which takes the Linked List and searches for a value ‘oldVertex’ and replaces it with the value ‘newVertex’ when it finds it. • I used an extra element in my array to make them 1 – index based. • The number of moves to complete the shortest path would be the level of the last vertex, Vertex 100. Think about it for a minute and you’ll get it! • I have added a recursive function, printShortestPath() which recursively looks at the parent of each vertex until the start vertex is reached. It keeps printing vertices as the recursion stack keeps popping out, thus we get the path in a reverse order.