sökträdet
Sökträdet is a term used in Swedish computer science to describe a tree-based data structure designed to organize and explore possible search paths or states. The name derives from sök, meaning "to search," and träd, meaning "tree." In a sökträdet, nodes represent partial solutions or states, and edges correspond to decisions or actions that extend the current path. The root typically denotes the initial state, while leaf nodes represent complete solutions or terminal states. Metadata such as path cost, heuristic estimates, or depth may be stored at nodes to guide exploration.
Operations on a sökträdet usually include expanding a node to generate successor states, inserting new paths,
Variants and related structures include tries, decision trees, and general search trees used in graph search
Applications of the sökträdet concept appear in puzzle solving, game planning, route finding, and declarative programming