在coursera上学习discrete optimization时关于branch and bound的笔记整理

Branch and bound (BB, B&B, or BnB) is an algorithm design paradigm for discrete and combinatorial optimization problems, as well as mathematical optimization. A branch-and-bound algorithm consists of a systematic enumeration of candidate solutions by means of state space search: the set of candidate solutions is thought of as forming a rooted tree with the full set at the root. The algorithm explores branches of this tree, which represent subsets of the solution set. Before enumerating the candidate solutions of a branch, the branch is checked against upper and lower estimated bounds on the optimal solution, and is discarded if it cannot produce a better solution than the best one found so far by the algorithm.
The algorithm depends on efficient estimation of the lower and upper bounds of regions/branches of the search space. If no bounds are available, the algorithm degenerates to an exhaustive search.

The core: prune the search tree.
Branch: split the problem into a number of subproblems
Bound: find the optimistic estimate of the best solution to the subproblem

Search strategy:

  1. Depth-first: select the left node to branch; prunes when a node estimation is worse than the best-found solution
  2. Best-first: select the node with best estimation to branch; prunes when all the nodes are worse than a found solution. (actually, it doesn’t have the pruning process, it branch the node which is most likely the optimal solution. So the whole algorithm only prune for one time, when all other node has less estimation than a found solution, it prune all other nodes.)
  3. Limited discrepancy search(LDS): trust a greedy heuristic less and less; explore the search space in increasing order of mistakes.
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值