Please enable JavaScript.
Coggle requires JavaScript to display documents.
Mapa 16 - Coggle Diagram
Mapa 16
state-space tree
Branch-and-bound
optimization problems
find the best solution, minimize or maximize some objective function
-
-
Examples
-
Knapsack Problem
given n items of known weights wi and values vi, i = 1, 2, ..., n, and a knapsack of capacity W, find the most valuable subset of the items that fit in the knapsack.
-
Backtracking
-
-
-
Examples
n-Queens Problem
place n queens on an n x n chessboard so that no two queens attack each other by being in tha same row, column, or diagonal.
-
-
-
-