[데이터 구조] 그림 의 DFS 는 스 택 으로 재 귀 하 는 C 언어 를 간단하게 제거 합 니 다.
12398 단어 데이터 구조
#include
#include
#define MAXSIZE 100
#define ElemType char
#define BOOL int
#define TRUE 1
#define FALSE 0
typedef struct{
int data[MAXSIZE];
int top; //
}Stack;
static void InitStack(Stack *s); //
static void Push(Stack *s, ElemType e); //
static void Pop(Stack *s, ElemType *e); //
static BOOL IsEmpty(Stack s); //
static void InitStack(Stack *s){
s->top = -1;
}
static void Push(Stack *s, ElemType e){
++s->top;
s->data[s->top] = e;
}
static void Pop(Stack *s, ElemType *e){
*e = s->data[s->top];
--s->top;
}
static BOOL IsEmpty(Stack s){
if (s.top <= -1){
return TRUE;
}else{
return FALSE;
}
}
#include
#include
#define INFINTE 65535
#define MAXSIZE 100
#include "stack.c"
typedef char VertexType; //
typedef int EdgeType; //
typedef struct graph{
VertexType vexs[MAXSIZE]; //
EdgeType arc[MAXSIZE][MAXSIZE]; //
int numNodes, numEdges;
}Graph;
int visited[200];
void CreateGraph(Graph* graph); //
VertexType* FirstAdjVex(Graph graph, VertexType data); //
VertexType* NextAdjVex(Graph graph, VertexType data, VertexType adj); //
void DFSTraversal(Graph graph); //
void DFSByStack(Graph graph, VertexType vex);
int main(){
int i, j;
Graph graph;
CreateGraph(&graph);
//
for (i = 0; i < graph.numNodes; ++i){
for (j = 0; j < graph.numNodes; ++j){
printf("%d ", graph.arc[i][j]);
}
printf("
");
}
VertexType* adj = FirstAdjVex(graph, 'A');
VertexType x = *adj;
printf("%c ", x);
adj = NextAdjVex(graph, 'A', x);
x = *adj;
printf("%c ", x);
x = *adj;
adj = FirstAdjVex(graph, 'D');
printf("%c
", *adj);
for (i = 0; i < 200; ++i){
visited[i] = 0;
}
DFSTraversal(graph);
return 0;
}
void CreateGraph(Graph* graph){
int i, j;
// 0(0 ,1 )
for (i = 0; i < graph->numNodes; ++i){
for (j = 0; j < graph->numNodes; ++j){
graph->arc[i][j] = 0;
}
}
//printf(" , :");
//scanf("%d %d", &graph->numNodes, &graph->numEdges);
//getchar();
graph->numNodes = 6;
graph->numEdges = 6;
/*
for (i = 0; i < graph->numNodes; ++i){
printf(" :");
scanf("%c", &graph->vexs[i]);
getchar(); //
}
*/
graph->vexs[0] = 'A';
graph->vexs[1] = 'B';
graph->vexs[2] = 'C';
graph->vexs[3] = 'D';
graph->vexs[4] = 'E';
graph->vexs[5] = 'F';
VertexType start, end;
/*
for (i = 0; i < graph->numEdges; ++i){
printf(" , :");
scanf("%c %c", &start, &end);
getchar(); //
int startIndex, endIndex;
for (j = 0; j < graph->numNodes; ++j){ // ,
if (start == graph->vexs[j]){
startIndex = j;
}
if (end == graph->vexs[j]){
endIndex = j;
}
}
graph->arc[startIndex][endIndex] = 1;
// ,
graph->arc[endIndex][startIndex] = 1;
}
*/
graph->arc[0][2] = 1;
graph->arc[0][3] = 1;
graph->arc[3][1] = 1;
graph->arc[2][4] = 1;
graph->arc[3][5] = 1;
graph->arc[4][5] = 1;
// ,
/*
graph->arc[2][0] = 1;
graph->arc[3][0] = 1;
graph->arc[1][3] = 1;
graph->arc[4][2] = 1;
graph->arc[5][3] = 1;
graph->arc[5][4] = 1;
*/
}
VertexType* FirstAdjVex(Graph graph, VertexType vex){
// data
int i, j;
for (i = 0; i < graph.numNodes; ++i){
if (graph.vexs[i] == vex){
for (j = 0; j < graph.numNodes; ++j){
if (graph.arc[i][j] == 1){ //
return &(graph.vexs[j]);
}
}
}
}
return NULL; //
}
VertexType* NextAdjVex(Graph graph, VertexType vex, VertexType adj){
int vexIndex, adjIndex, i;
for (i = 0; i < graph.numNodes; ++i){
if (graph.vexs[i] == vex){
vexIndex = i;
}
if (graph.vexs[i] == adj){
adjIndex = i;
}
}
for (i = adjIndex + 1; i < graph.numNodes; ++i){ //
if (graph.arc[vexIndex][i] == 1){
return &(graph.vexs[i]);
}
}
return NULL; //
}
/* */
void DFSTraversal(Graph graph){
int i;
for (i = 0; i < graph.numNodes; ++i){
if (visited[graph.vexs[i]] != 1) {
DFSByStack(graph, graph.vexs[i]);
}
}
}
void DFSByStack(Graph graph, VertexType vex){
VertexType x;
VertexType *p;
Stack stack;
InitStack(&stack);
Push(&stack, vex);
visited[vex] = 1;
printf("%c ", vex);
while (!IsEmpty(stack)){
ElemType e;
Pop(&stack, &e); //
for (p = FirstAdjVex(graph, e); p != NULL; p=NextAdjVex(graph, e, x)){
x = *p;
if (visited[x] != 1){ //
Push(&stack, e);
Push(&stack, x);//
printf("%c ", x);
visited[x] = 1;
break;
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.