图(有向图)的邻接表表示 C++实现(遍历,拓扑排序,最短路径,最小生成树) Implement of digraph and undigraph using adjacency list

本文主要是介绍图(有向图)的邻接表表示 C++实现(遍历,拓扑排序,最短路径,最小生成树) Implement of digraph and undigraph using adjacency list,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文实现了有向图的邻接表表示,并且实现了从创建到销毁图的各种操作。

以及深度优先遍历,广度优先遍历,Dijkstra最短路径算法,Prim最小生成树算法,拓扑排序算法。

可结合我的另一篇文章(有向图,无向图的邻接矩阵表示)看。

PS: 等有时间了作详细的讲解。


#include <iostream>
#include <climits>
#include <sstream> 
#include <queue>
using namespace std;//const bool UNDIGRAPH = 1;struct EdgeNode//edge,the node of linked list  
{  int vtxNO;  int weight;  EdgeNode *next;  
};  struct VNode//vertex, the head of the linked list  
{  string vertexLabel; EdgeNode *first;  bool visited;//only for DFS,BFS,Dijkstraint distance; //only for Dijkstraint path;//only for Dijkstraint indegree; //only for topological sort
};  struct Graph  
{  VNode *vertexList;//the size of this array is equal to vertexes  int vertexes;  int edges;  
};  void BuildGraph(Graph *&graph, int n)
{if (graph == NULL){graph = new Graph;graph->vertexList = new VNode[n];graph->vertexes = n;graph->edges = 0;for (int i = 0; i < n; i++)  {  stringstream ss;  ss<<"v" << i+1;  ss >> graph->vertexList[i].vertexLabel;  graph->vertexList[i].path = -1;graph->vertexList[i].visited = false;graph->vertexList[i].first = NULL;graph->vertexList[i].indegree = 0;}}
}void MakeEmpty(Graph *&graph)
{if(graph == NULL)return;for (int i = 0; i < graph->vertexes; i++)  {  EdgeNode *pEdge = graph->vertexList[i].first;  while (pEdge!=NULL)  {  EdgeNode *tmp = pEdge;  pEdge = pEdge->next;  delete tmp;  }  }  delete graph;
}void AddEdge(Graph *graph,int v1, int v2, int weight)
{if (graph == NULL) return;if (v1 < 0 || v1 > graph->vertexes-1) return;if (v2 < 0 || v2 > graph->vertexes-1) return;if (v1 == v2) return; //no loop is allowedEdgeNode *p = graph->vertexList[v1].first; if(p == NULL)  {  //can not be p = new EdgeNode;  graph->vertexList[v1].first = new EdgeNode;  graph->vertexList[v1].first->next = NULL;  graph->vertexList[v1].first->vtxNO = v2;  graph->vertexList[v1].first->weight = weight;  graph->edges++;graph->vertexList[v2].indegree++;return;}  while (p->next != NULL)//move to the last node  {  if(p->vtxNO == v2)//already exits. checking all nodes but the last one  return;  p = p->next;  }  if(p->vtxNO == v2)//already exits. checking the first or the last node  return;  EdgeNode *node = new EdgeNode;  node->next = NULL;  node->vtxNO = v2;  node->weight = weight;  p->next = node;//last node's next is the new node  graph->edges++;  graph->vertexList[v2].indegree++;
}void RemoveEdge(Graph *graph, int v1, int v2)
{if (graph == NULL) return;if (v1 < 0 || v1 > graph->vertexes-1) return;if (v2 < 0 || v2 > graph->vertexes-1) return;if (v1 == v2) return; //no loop is allowedEdgeNode *p = graph->vertexList[v1].first;  if(p == NULL)//not found  return;  if(p->vtxNO == v2)//found,delete the first node  {  EdgeNode *tmp = p;//first  graph->vertexList[v1].first = p->next; //can not be p = p->next  delete tmp;  graph->edges--;  graph->vertexList[v2].indegree--;return;  }  while(p->next != NULL)  {  if(p->next->vtxNO == v2)//found  {  EdgeNode *tmp = p->next;  p = p->next->next;  delete tmp;  graph->edges--;  graph->vertexList[v2].indegree--;return;  }  p = p->next;  }  
}int GetIndegree(Graph *graph, int v)
{if(graph == NULL) return -1;if(v < 0 || v > graph->vertexes -1) return -2;int degree = 0;  for (int i = 0; i < graph->vertexes; i++)  {  EdgeNode *p = graph->vertexList[i].first;  while (p != NULL)  {  if(p->vtxNO == v)  {  degree++;  break;  }  p = p->next;  }  }  return degree;  
}int GetOutdegree(Graph *graph, int v)
{if(graph == NULL) return -1;if(v < 0 || v > graph->vertexes -1) return -2;int degree = 0;  EdgeNode *p = graph->vertexList[v].first;  while(p != NULL)  {  p = p->next;  degree++;  }  return degree; 
}int GetDegree(Graph *graph, int v)
{if(graph == NULL) return -1;if(v < 0 || v > graph->vertexes -1) return -2;return GetIndegree(graph,v) + GetOutdegree(graph,v);
}void PrintGraph(Graph *graph)
{if(graph == NULL)return;cout << "Vertex: " << graph->vertexes <<"\n";cout << "Edge: " << graph->edges << "\n";for (int i = 0; i < graph->vertexes; i++)  {  cout << i+1 << ": " << graph->vertexList[i].vertexLabel<<"->";  EdgeNode *p = graph->vertexList[i].first;  while (p != NULL)  {  cout << graph->vertexList[p->vtxNO].vertexLabel << "(" << p->weight <<")->";  p = p->next;  }  cout << "\n";  }  cout << "\n";
}//depth first search (use stack or recursion)
//DFS is similar to preorder traversal of trees
void DFS(Graph *graph, int i)
{if (!graph->vertexList[i].visited){cout << graph->vertexList[i].vertexLabel << " ";graph->vertexList[i].visited = true;}EdgeNode *p = graph->vertexList[i].first;while (p != NULL){if(!graph->vertexList[p->vtxNO].visited)//notice!DFS(graph, p->vtxNO);p = p->next;}
}void BeginDFS(Graph *graph)
{if(graph == NULL) return;cout << "DFS\n";for (int i = 0; i < graph->vertexes; i++)graph->vertexList[i].visited = false;for (int i = 0; i < graph->vertexes; i++)DFS(graph,i);
}
//breadth first search(use queue)
//BFS is similar to leverorder traversal of trees
//all of the vertexes will be searched once no matter how the digraph is constructed
void BFS(Graph *graph)
{if(graph == NULL)return;cout << "BFS\n";for (int i = 0; i < graph->vertexes; i++)graph->vertexList[i].visited = false;queue<int> QVertex;for (int i = 0; i < graph->vertexes; i++){if (!graph->vertexList[i].visited){QVertex.push(i);cout << graph->vertexList[i].vertexLabel << " ";graph->vertexList[i].visited = true;}while(!QVertex.empty()){int vtxNO = QVertex.front();QVertex.pop();EdgeNode *p = graph->vertexList[vtxNO].first;while(p != NULL){if (!graph->vertexList[p->vtxNO].visited){cout << graph->vertexList[p->vtxNO].vertexLabel << " ";graph->vertexList[p->vtxNO].visited = true;QVertex.push(p->vtxNO);}p = p->next;}}}cout << "\n";
}void TopologicalSort(Graph *graph)
{//if(UNDIGRAPH) return;if(graph == NULL) return;cout << "TopologicalSort"<<"\n";int counter = 0;queue <int> qVertex;for (int i = 0; i < graph->vertexes; i++){if(GetIndegree(graph,i) == 0)qVertex.push(i);}while (!qVertex.empty()){int vtxNO = qVertex.front();counter++;cout << graph->vertexList[vtxNO].vertexLabel;if(counter != graph->vertexes)cout << " > ";qVertex.pop();EdgeNode *p = graph->vertexList[vtxNO].first;while(p != NULL){int vtxNo = p->vtxNO;/*EdgeNode *tmp = p;p = p->next;delete tmp;tmp = NULL;*/// although tmp is NULL,but p is not NULL,and the data pointed by p has been deletedp = p->next;//if (GetIndegree(graph,vtxNo) == 0)//error,in while(p != NULL),so use a variable indegree insteadif (--graph->vertexList[vtxNo].indegree == 0)qVertex.push(vtxNo);}}cout << "\n";
}void Dijkstra(Graph *graph, int v)
{if(graph == NULL) return;if(v < 0 || v > graph->vertexes-1) return;for (int i = 0; i < graph->vertexes; i++){graph->vertexList[i].visited = false;graph->vertexList[i].distance = INT_MAX;//can delete this line,as initialized in BuildGraphgraph->vertexList[i].path = -1;}graph->vertexList[v].distance = 0;//the rest are all INT_MAXwhile(1){int minDisInx = -1;int minDis = INT_MAX;for (int i = 0; i < graph->vertexes; i++){if(!graph->vertexList[i].visited){if(graph->vertexList[i].distance < minDis){minDis = graph->vertexList[i].distance;minDisInx = i;}}}if(minDisInx == -1)//all visitedbreak;graph->vertexList[minDisInx].visited = true;EdgeNode *p = graph->vertexList[minDisInx].first;while(p != NULL){int vtxNO = p->vtxNO;if(!graph->vertexList[vtxNO].visited){if (graph->vertexList[minDisInx].distance + p->weight < graph->vertexList[vtxNO].distance){graph->vertexList[vtxNO].distance = graph->vertexList[minDisInx].distance + p->weight;graph->vertexList[vtxNO].path = minDisInx;cout << graph->vertexList[vtxNO].vertexLabel << " Updated to " << graph->vertexList[vtxNO].distance << "\n";}}p = p->next;}}cout << "Vertex  Visited  Distance  Path\n";for (int i = 0; i < graph->vertexes; i++){cout << graph->vertexList[i].vertexLabel<< "	";cout << graph->vertexList[i].visited<< "	";cout << graph->vertexList[i].distance<< "	";if(graph->vertexList[i].path == -1)cout << "NONE\n";elsecout << graph->vertexList[graph->vertexList[i].path].vertexLabel << "\n";}
}//almost for undigraph
void Prim(Graph *graph, int v)
{if(graph == NULL) return;if(v < 0 || v > graph->vertexes-1) return;for (int i = 0; i < graph->vertexes; i++){graph->vertexList[i].visited = false;graph->vertexList[i].distance = INT_MAX;//can delete this line,as initialized in BuildGraphgraph->vertexList[i].path = -1;}graph->vertexList[v].distance = 0;//the rest are all INT_MAXwhile(1){int minDisInx = -1;int minDis = INT_MAX;for (int i = 0; i < graph->vertexes; i++){if(!graph->vertexList[i].visited){if(graph->vertexList[i].distance < minDis){minDis = graph->vertexList[i].distance;minDisInx = i;}}}if(minDisInx == -1)//all visitedbreak;graph->vertexList[minDisInx].visited = true;EdgeNode *p = graph->vertexList[minDisInx].first;while(p != NULL){int vtxNO = p->vtxNO;if(!graph->vertexList[vtxNO].visited){if (p->weight < graph->vertexList[vtxNO].distance){graph->vertexList[vtxNO].distance = p->weight;graph->vertexList[vtxNO].path = minDisInx;cout << graph->vertexList[vtxNO].vertexLabel << " Updated to " << graph->vertexList[vtxNO].distance << "\n";}}p = p->next;}}cout << "Vertex  Visited  Distance  Path\n";for (int i = 0; i < graph->vertexes; i++){cout << graph->vertexList[i].vertexLabel<< "	";cout << graph->vertexList[i].visited<< "	";cout << graph->vertexList[i].distance<< "	";if(graph->vertexList[i].path == -1)cout << "NONE\n";elsecout << graph->vertexList[graph->vertexList[i].path].vertexLabel << "\n";}}
int main()
{Graph *graph = NULL;BuildGraph(graph,7);PrintGraph(graph);//for simple test, 0 indexed/*AddEdge(graph,0,1,1);AddEdge(graph,0,2,1);AddEdge(graph,1,3,1);*///for TopologicalSort//0 indexedAddEdge(graph,0,1,1);AddEdge(graph,0,2,1);AddEdge(graph,0,3,1);AddEdge(graph,1,3,1);AddEdge(graph,1,4,1);AddEdge(graph,2,5,1);AddEdge(graph,3,2,1);AddEdge(graph,3,5,1);AddEdge(graph,3,6,1);AddEdge(graph,4,3,1);AddEdge(graph,4,6,1);AddEdge(graph,6,5,1);PrintGraph(graph);RemoveEdge(graph,6,5);AddEdge(graph,6,5,1);//for Dijkstra(shortest path),Prim(minimum spanning tree)//0 indexed/*AddEdge(graph,0,1,2);  AddEdge(graph,0,3,1);  AddEdge(graph,1,3,3);  AddEdge(graph,1,4,10);  AddEdge(graph,2,0,4);  AddEdge(graph,2,5,5);  AddEdge(graph,3,2,2);AddEdge(graph,3,4,2);AddEdge(graph,3,5,8);  AddEdge(graph,3,6,4);  AddEdge(graph,4,6,6);  AddEdge(graph,6,5,1);*/PrintGraph(graph);BeginDFS(graph);cout << "\n";BFS(graph);for (int i = 0; i < graph->vertexes; i++){cout << "\n";Dijkstra(graph,i);}Prim(graph,0);TopologicalSort(graph);MakeEmpty(graph);return 0;
}


这篇关于图(有向图)的邻接表表示 C++实现(遍历,拓扑排序,最短路径,最小生成树) Implement of digraph and undigraph using adjacency list的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/472262

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("