I am reading about backtracking algorithm design technique. It is mentioned as follows.
Backtracking is a refinement of the brute force approach, which systematically searches for a solution to a problem among all available options. It does so by assuming that the solutions are represented by vectors (v1, v2, ..., vm) of values and by traversing, in a depth first manner, the domains of the vectors until the solutions are found.
My quesitons on above text as follows.
What does author mean by solutions are represented by vectors?
What does author mean by domains of vectors?
Thanks for clarifying.