A search frontier, also known as an open list, is the set of all nodes in a search algorithm's state space that have been generated but not yet expanded. It represents the dynamic boundary between explored and unexplored territory, directly governing the algorithm's exploration strategy. The order in which nodes are selected from this frontier—whether by a stack, queue, or priority queue—determines the search's fundamental behavior, such as in breadth-first search (BFS) or A Search*.
