DFS和BFS

#include <iostream>
#include <stack>
#include <queue>
#include <stdlib.h>
using namespace std;
#define MAX 100

typedef struct
{
	int edges[MAX][MAX];
	int n;
	int e;
}MGraph;

bool visited[MAX] = False;

void CreateMGraph(MGraph &G)
{
	int i,j;
	int s,t;
	int v;
	for(i=0;i<G.n;i++)
	{
		for(j=0;j<G.n;j++)
		{
			G.edges[i][j] =0;
		}
	}
	for(i=0;i<G.e;i++)
	{
		scanf("%d %d %d",&s,&t,&v);
		G.edges[s][t] = v;
	}
		
}
void DFS(MGraph G,int node)
{
	int i;
	printf("%d",node);
	visited[node] = True;
	for(i=0;i<G.n;i++)
	{
		if(G.edges[v][i]!=0&&visited[i]==False)
		{
			DFS(G,i);
		}
	}
	
}

void DFS1(MGraph G,int node)
{
	stack <int> s;
	printf("%d",node);
	visited[node] = True;
	s.push(node);
	while(!s.empty())
	{
		int i,j;
		i = s.top();
		for(j=0;j<G.n;j++)
		{
			if(G.edges[i][j]!=0&&visited[j]==False)
			{
				printf("%d",j);
				visited[j]=True;
				s.push(j);
				break;
			}
		}
		if(j==G.n)
		{
			s.pop();
		}
	}
}

void BFS(MGraph G,int node)
{
	queue <int> q;
	printf("%d",node);
	visited[node] = True;
	q.push(node);
	while(!q.empty())
	{
		int i,j;
		i = q.front();
		q.pop();
		for(j=0;j<G.n;j++)
		{
			if(G.edges[i][j]!=0&&visited[j]==False)
			{
				printf("%d",j);
				visited[j] = True;
				q.push(j);
			}
		}
	}
	
}

备注:本文为转载,原文信息如下:

作者: 海子
         
本博客中未标明转载的文章归作者 海子和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值