程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 純C語言:檢索與周游遍歷源碼

純C語言:檢索與周游遍歷源碼

編輯:關於C語言

#include
#include
#define Max 20
typedef struct Node
{
	int num;
	struct Node *next;
}Node;
Node G[Max];
int visited[Max];
void Creategraph(int n,Node G[])
{
	int i,e,j;
	Node *p,*q;
	for(i=0;i>e;
		e=e-1;
		j=0;
		while(e!=-1&&jnext=NULL;
			p->num=e;
			j++;
			if(G[i].next==NULL)
				G[i].next=p;
			else q->next=p;
			q=p;
			cout<<"請輸入第"<>e;
		    e=e-1;
		}
	}
}
int First(Node G[],int v)
{
	if(G[v].next!=NULL)
		return G[v].next->num;
	return -1;
}
int Next(Node G[],int v)
{
	Node *p;
	p=G[v].next;
	while(p!=NULL)
	{
		if(visited[p->num])
			p=p->next;
		else
			return p->num;
	}
	return -1;
}
void DFS(Node G[],int v)
{
	int w;
	cout<>n;
	Creategraph(n,G);
	for(i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved