06-图1 列出连通集

这个其实主要也是熟悉一下图的一些基本操作,包括它的建立以及遍历。

建立的话,可以用邻接矩阵或者邻接表法。前者适合稠密的图,后者适合稀疏的图。

遍历的话,可以用深度优先搜索(DFS,需要递归,类比先序遍历),或者广度优先搜索(BFS,不用递归,类比层序遍历)

这里因为需要按照顺序打印,所以要么用邻接矩阵,要么用邻接表(这个表不能是一般的链表了,而要是最小堆)。为了方便,现在使用邻接矩阵。

#include 
#include 
#include 

int Maxsize=0;

typedef struct _node{
	int f;
	char c;
}Node;

typedef struct _code{
	char c;
	char *code;
}Code;

typedef struct _heap{
	Node *p;
	int nowsize;
}Heap;

void insert_heap(Heap *heap,Node record);
Node dele_heap(Heap *heap);
int cnt_wpl(Heap *heap);
int find_flu(Node *record,char c);
int check(char a[],char b[]);

int main(){
	scanf("%d",&Maxsize);
	
	Heap *heap=(Heap*)malloc(sizeof(Heap)); //创建堆,为了哈夫曼树 
	heap->nowsize=0;
	heap->p=(Node*)malloc((Maxsize+1)*sizeof(Node));
	heap->p[0].f=-10000;
	int wpl;
	
	Node *record=(Node*)malloc((Maxsize)*sizeof(Node));//存储字符以及出现的频率 
	int i,j;
	for(i=0;i=strlen(b)){
		big=a;small=b;
	}
	else
	{
		big=b;small=a;
	}
	return strstr(big,small)==big;
}

int find_flu(Node *record,char c){   //寻找字符c对应的频率,输入不存在字符返回-1 
	Node *p=record;
	int i=0;
	int flag=-1;
	for(i=0;inowsize;
	Node a1;
	Node a2;
	Node b1;
	for(i=0;inowsize==0){
		printf("Heap is empty");
		return;
	}
	else
	{
		Node record;
		record=heap->p[1];
		Node tmp=heap->p[heap->nowsize];
		heap->nowsize-=1;
		int pa=1,ch=0;		
		
		for(pa=1;2*pa<=heap->nowsize;pa=ch){  //,从顶向下过滤,注意终止条件 
			
			ch=2*pa;
			if(ch != heap->nowsize && (heap->p[ch].f > heap->p[ch+1].f ))  //注意第一个判断条件 
			{
					ch++;
			}
			if(tmp.f < heap->p[ch].f){
				break;
			}else{
				heap->p[pa]=heap->p[ch];
			}
			
		}
		heap->p[pa]=tmp;
		return record;
	}
	
}

void insert_heap(Heap *heap,Node record){  //入堆 ,从底向上过滤 
	if(heap->nowsize==0 ){
		heap->p[1]=record;
		heap->nowsize+=1;
	}
	else
	{
		int i=heap->nowsize+1;
		for(;heap->p[i/2].f > record.f;i=i/2){
			heap->p[i]=heap->p[i/2];
		}
		heap->p[i]=record;
		heap->nowsize+=1;
	}
}


06-图1 列出连通集   (25分)

给定一个有N个顶点和E条边的无向图,请用DFS和BFS分别列出其所有的连通集。假设顶点从0到N1编号。进行搜索时,假设我们总是从编号最小的顶点出发,按编号递增的顺序访问邻接点。

输入格式:

输入第1行给出2个整数N(0<N10)和E,分别是图的顶点数和边数。随后E行,每行给出一条边的两个端点。每行中的数字之间用1空格分隔。

输出格式:

按照"{ v1 v2 ... vk }"的格式,每行输出一个连通集。先输出DFS的结果,再输出BFS的结果。

输入样例:

8 6
0 7
0 1
2 0
4 1
2 4
3 5

输出样例:

{ 0 1 4 2 7 }
{ 3 5 }
{ 6 }
{ 0 1 2 7 4 }
{ 3 5 }
{ 6 }

你可能感兴趣的:(06-图1 列出连通集)