This document discusses four parallel searching algorithms: Alpha-Beta search, Jamboree search, Depth-First search, and PVS search. Alpha-Beta search prunes unpromising branches without missing better moves. Jamboree search parallelizes the testing of child nodes. Depth-First search recursively explores branches until reaching a dead end, then backtracks. PVS search splits the search tree across processors, backing up values in parallel at each level. However, load imbalance can occur if some branches are much larger than others.