Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

make program in c++ that makes 4 directional linked lists to appear like the diagram i made below. The Program needs to ask the user for a starting...

make program in c++ that makes 4 directional linked lists to appear like the diagram i made below. The Program needs to ask the user for a starting node and a ending node.They are able to choose any starting and ending locations and your program should be able to begin from that starting node (by placing a pointer to that node) and going through each of the 4 directions until it finds the ending node. At this point, it should output the path it too. Use only one recursive function. This function's base case is if the current node it is located in is equal to the node the user typed in as the ending node. If it is, you are to output the name of that node and terminate the current node (this base case gives the path in reverse, which is what I need).

Assuming it goes up, left, down, right

OUTPUT:

Please enter the starting node: B

Please enter the destination node: I

Going left to A

Going down to D

D ends

A ends

Going down to E

Going down to H

Going left to G

G ends

H ends

Going right to F

Going up to C

C ends

Going down to I

Destination Reached, path was:  I F E B

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question