tag: %u56DE%u6EAF.md

Tag: 回溯

1 posts
Backtracking Template

回溯 = 决策树上的 DFS:选 → 递归 → 撤销。所有”列出所有可能”的题都是同一个模板,区别只在”选择列表”怎么造。

...