【无标题】

算法详解

这道题用的是dfs,原先自己写过很多遍,但是这次还是出错了,出错的地方就是

我开始错的地方就是

void dfs(int start,int n){
    cout<<"res:"<

 改后

void dfs(int start,int n){
    cout<<"res:"<n-1){
    //     return;
    // }
    for(int i=0;i

算法题目

【无标题】_第1张图片

ac代码 

#include 
#include 
#include 
using namespace std;

vector ress;
int vis[100];
string res;
string str;
void dfs(int start,int n){
    // cout<<"res:"<>str;
    dfs(0,str.size());

    return 0;
}

你可能感兴趣的:(图论,算法,深度优先)