This document discusses algorithms for solving the traveling salesman problem (TSP), including the Little algorithm. The Little algorithm uses a branch and bound approach to find the optimal solution to the TSP. It works by first computing a lower bound on the cost, then iteratively considering paths with the highest "regret" or deviation from the lower bound, branching on whether to include or exclude that path until an optimal solution is found. While exact, the Little algorithm runs into computational issues as the number of cities increases due to the large search tree that must be explored.