5.3图的遍历
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#define MAX 100
#define isLetter(a) ((((a)>='a')&&((a)<='z')) || (((a)>='A')&&((a)<='Z')))
#define LENGTH(a) (sizeof(a)/sizeof(a[0]))
typedef struct _ENode
{
int ivex;
struct _ENode *next_edge;
}ENode, *PENode;
typedef struct _VNode
{
char data;
ENode *first_edge;
}VNode;
typedef struct _LGraph
{
int vexnum;
int edgnum;
VNode vexs[MAX];
}LGraph;
static int get_position(LGraph g, char ch)
{
int i;
for(i=0; i<g.vexnum; i++)
if(g.vexs[i].data==ch)
return i;
return -1;
}
static char read_char()
{
char ch;
do {
ch = getchar();
} while(!isLetter(ch));
return ch;
}
static void link_last(ENode *list, ENode *node)
{
ENode *p = list;
while(p->next_edge)
p = p->next_edge;
p->next_edge = node;
}
LGraph* create_lgraph()
{
char c1, c2;
int v, e;
int i, p1, p2;
ENode *node1, *node2;
LGraph* pG;
printf("input vertex number: ");
scanf("%d", &v);
printf("input edge number: ");
scanf("%d", &e);
if ( v < 1 || e < 1 || (e > (v * (v-1))))
{
printf("input error: invalid parameters!\n");
return NULL;
}
if ((pG=(LGraph*)malloc(sizeof(LGraph))) == NULL )
return NULL;
memset(pG, 0, sizeof(LGraph));
pG->vexnum = v;
pG->edgnum = e;
for(i=0; i<pG->vexnum; i++)
{
printf("vertex(%d): ", i);
pG->vexs[i].data = read_char();
pG->vexs[i].first_edge = NULL;
}
for(i=0; i<pG->edgnum; i++)
{
printf("edge(%d): ", i);
c1 = read_char();
c2 = read_char();
p1 = get_position(*pG, c1);
p2 = get_position(*pG, c2);
node1 = (ENode*)calloc(1,sizeof(ENode));
node1->ivex = p2;
if(pG->vexs[p1].first_edge == NULL)
pG->vexs[p1].first_edge = node1;
else
link_last(pG->vexs[p1].first_edge, node1);
node2 = (ENode*)calloc(1,sizeof(ENode));
node2->ivex = p1;
if(pG->vexs[p2].first_edge == NULL)
pG->vexs[p2].first_edge = node2;
else
link_last(pG->vexs[p2].first_edge, node2);
}
return pG;
}
LGraph* create_example_lgraph()
{
char c1, c2;
char vexs[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G'};
char edges[][2] = {
{'A', 'C'},
{'A', 'D'},
{'A', 'F'},
{'B', 'C'},
{'C', 'D'},
{'E', 'G'},
{'F', 'G'}};
int vlen = LENGTH(vexs);
int elen = LENGTH(edges);
int i, p1, p2;
ENode *node1, *node2;
LGraph* pG;
if ((pG=(LGraph*)malloc(sizeof(LGraph))) == NULL )
return NULL;
memset(pG, 0, sizeof(LGraph));
pG->vexnum = vlen;
pG->edgnum = elen;
for(i=0; i<pG->vexnum; i++)
{
pG->vexs[i].data = vexs[i];
pG->vexs[i].first_edge = NULL;
}
for(i=0; i<pG->edgnum; i++)
{
c1 = edges[i][0];
c2 = edges[i][1];
p1 = get_position(*pG, c1);
p2 = get_position(*pG, c2);
node1 = (ENode*)calloc(1,sizeof(ENode));
node1->ivex = p2;
if(pG->vexs[p1].first_edge == NULL)
pG->vexs[p1].first_edge = node1;
else
link_last(pG->vexs[p1].first_edge, node1);
node2 = (ENode*)calloc(1,sizeof(ENode));
node2->ivex = p1;
if(pG->vexs[p2].first_edge == NULL)
pG->vexs[p2].first_edge = node2;
else
link_last(pG->vexs[p2].first_edge, node2);
}
return pG;
}
static void DFS(LGraph G, int i, int *visited)
{
ENode *node;
visited[i] = 1;
printf("%c ", G.vexs[i].data);
node = G.vexs[i].first_edge;
while (node != NULL)
{
if (!visited[node->ivex])
DFS(G, node->ivex, visited);
node = node->next_edge;
}
}
void DFSTraverse(LGraph G)
{
int i;
int visited[MAX];
for (i = 0; i < G.vexnum; i++)
visited[i] = 0;
printf("DFS: ");
for (i = 0; i < G.vexnum; i++)
{
if (!visited[i])
DFS(G, i, visited);
}
printf("\n");
}
void BFS(LGraph G)
{
int head = 0;
int rear = 0;
int queue[MAX];
int visited[MAX];
int i, j, k;
ENode *node;
for (i = 0; i < G.vexnum; i++)
visited[i] = 0;
printf("BFS: ");
for (i = 0; i < G.vexnum; i++)
{
if (!visited[i])
{
visited[i] = 1;
printf("%c ", G.vexs[i].data);
queue[rear++] = i;
}
while (head != rear)
{
j = queue[head++];
node = G.vexs[j].first_edge;
while (node != NULL)
{
k = node->ivex;
if (!visited[k])
{
visited[k] = 1;
printf("%c ", G.vexs[k].data);
queue[rear++] = k;
}
node = node->next_edge;
}
}
}
printf("\n");
}
void print_lgraph(LGraph G)
{
int i;
ENode *node;
printf("List Graph:\n");
for (i = 0; i < G.vexnum; i++)
{
printf("%d(%c): ", i, G.vexs[i].data);
node = G.vexs[i].first_edge;
while (node != NULL)
{
printf("%d(%c) ", node->ivex, G.vexs[node->ivex].data);
node = node->next_edge;
}
printf("\n");
}
}
LGraph* create_example_lgraph_directed()
{
char c1, c2;
char vexs[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G'};
char edges[][2] = {
{'A', 'B'},
{'B', 'C'},
{'B', 'E'},
{'B', 'F'},
{'C', 'E'},
{'D', 'C'},
{'E', 'B'},
{'E', 'D'},
{'F', 'G'}};
int vlen = LENGTH(vexs);
int elen = LENGTH(edges);
int i, p1, p2;
ENode *node1;
LGraph* pG;
if ((pG=(LGraph*)malloc(sizeof(LGraph))) == NULL )
return NULL;
memset(pG, 0, sizeof(LGraph));
pG->vexnum = vlen;
pG->edgnum = elen;
for(i=0; i<pG->vexnum; i++)
{
pG->vexs[i].data = vexs[i];
pG->vexs[i].first_edge = NULL;
}
for(i=0; i<pG->edgnum; i++)
{
c1 = edges[i][0];
c2 = edges[i][1];
p1 = get_position(*pG, c1);
p2 = get_position(*pG, c2);
node1 = (ENode*)calloc(1,sizeof(ENode));
node1->ivex = p2;
if(pG->vexs[p1].first_edge == NULL)
pG->vexs[p1].first_edge = node1;
else
link_last(pG->vexs[p1].first_edge, node1);
}
return pG;
}
void main()
{
LGraph* pG;
pG = create_example_lgraph_directed();
print_lgraph(*pG);
DFSTraverse(*pG);
BFS(*pG);
system("pause");
}
Dijkstra 无向图
#define _CRT_SECURE_NO_WARNINGS
#include"iostream"
#include"cstring"
#include"cstdio"
using namespace std;
#define INF 0x7f7f7f7f
const int N = 5;
int maze[N][N];
int dis[N];
bool vis[N];
int n, m;
void init()
{
memset(maze, INF, sizeof(maze));
memset(dis, INF, sizeof(dis));
memset(vis, false, sizeof(vis));
for (int i = 0; i < N; i++)
{
maze[i][i] = 0;
}
}
void dijkstra(int st)
{
dis[st] = 0;
for (int i = 0; i < n; i++)
{
int minx = INF;
int minmark;
for (int j = 0; j < n; j++)
{
if (vis[j] == false && dis[j] <= minx)
{
minx = dis[j];
minmark = j;
}
}
vis[minmark] = true;
for (int j = 0; j < n; j++)
{
if (vis[j] == false && dis[j] > dis[minmark] + maze[minmark][j])
dis[j] = dis[minmark] + maze[minmark][j];
}
}
}
int main()
{
while (scanf("%d %d", &n, &m) != EOF)
{
if (n == 0 && m == 0) break;
init();
for (int i = 1; i <= m; i++)
{
int x, y, len;
scanf("%d %d %d", &x, &y, &len);
if (x != y && maze[x][y] > len)
{
maze[y][x] = len;
maze[x][y] = len;
}
}
dijkstra(0);
}
}
project1
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
typedef char elm;
typedef struct tree {
elm data;
struct tree* leftchild;
struct tree* rightchild;
}tree, * p_tree;
typedef struct list1 {
p_tree pos;
struct list1* next;
}list1, * p_list;
void putout(p_tree p)
{
if (p != NULL)
{
putchar(p->data);
putout(p->leftchild);
putout(p->rightchild);
}
}
int main()
{
p_list head = NULL;
p_list tail = NULL;
p_list cur = NULL;
p_list plnew = NULL;
p_tree pnew = NULL;
char c = 0;
while (scanf("%c", &c) != EOF)
{
if (c == '\n')
{
break;
}
plnew= (p_list)calloc(1, sizeof(list1));
pnew= (p_tree)calloc(1, sizeof(tree));
pnew->data = c;
plnew->pos = pnew;
if (head == NULL)
{
head = plnew;
tail = head;
cur = head;
continue;
}
tail->next = plnew;
tail = tail->next;
if (cur->pos->leftchild == NULL)
{
cur->pos->leftchild = pnew;
}
else if (cur->pos->rightchild == NULL)
{
cur->pos->rightchild = pnew;
cur = cur->next;
}
}
putout(head->pos);
return 0;
}