youngyangyang04 / leetcode-master-comment

用来做评论区
0 stars 0 forks source link

[Vssue]kamacoder/图论深搜理论基础.md #132

Open youngyangyang04 opened 2 months ago

youngyangyang04 commented 2 months ago

https://www.programmercarl.com/kamacoder/%E5%9B%BE%E8%AE%BA%E6%B7%B1%E6%90%9C%E7%90%86%E8%AE%BA%E5%9F%BA%E7%A1%80.html

guduyili commented 1 month ago

打卡

Keepitupforever commented 1 month ago

6666

Du1in9 commented 1 month ago
void dfs(参数) {
    if (终止条件) {
        存放结果;
        return;
    }
    for (选择:本节点所连接的其他节点) {
        // 1. 处理节点
        // 2. 递归深搜
        // 3. 回溯节点
    }
}
701Lee commented 2 weeks ago

你们好