I notice that some of the \"hard\" combinatorial problems I come across can be cast in terms of some type of tree search like alpha-beta pruning, or beam search, or a similar algorithm. However, progr
Any node can have any number of children. To search this tree i wrote something like this function Search(key, nodes){
I\'m writing a distributed Go/Gomoku bot. Basically the point is to distribute tree search onto many computers. With basic tree search algorithms like DFS this would be very simple, as I could just p