Search Results

23
votes

What is tail-recursion?

In traditional recursion, the typical model is that you perform your recursive calls first, and then you take the return value of the recursive call and calculate the result. In this manner, you do …
2
votes

Graph searching algorithm

One would think your standard BFS should work here. Whenever you add a node to the open list, you can wrap it into a s …