日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

邻接表1 - 试在邻接表存储结构上实现图的基本操作 insert_vertex 和 insert_arc-数据结构-图-icoding

發布時間:2023/12/4 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 邻接表1 - 试在邻接表存储结构上实现图的基本操作 insert_vertex 和 insert_arc-数据结构-图-icoding 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

鄰接表1

試在鄰接表存儲結構上實現圖的基本操作 insert_vertex 和 insert_arc,相關定義如下:

typedef int VertexType;typedef enum{DG, UDG }GraphType;typedef struct ArcNode {int adjvex;InfoPtr *info;struct ArcNode *nextarc;}ArcNode;typedef struct VNode {VertexType data;ArcNode *firstarc; }VNode; typedef struct {VNode vertex[MAX_VERTEX_NUM];int vexnum, arcnum;GraphType type; }ListGraph;int locate_vertex(ListGraph* G, VertexType v); //返回頂點 v 在vertex數組中的下標,如果v不存在,返回-1 bool insert_vertex(ListGraph *G, VertexType v); bool insert_arc(ListGraph *G, VertexType v, VertexType w);

注意判斷條件:

成功插入頂點或邊時,函數返回true,否則(如頂點或邊已存在、插入邊時頂點v或w不存在)返回false。

#include <stdio.h> #include "graph.h" //請勿刪除,否則檢查不通過 bool insert_vertex(ListGraph *G, VertexType v){int n;n = locate_vertex(G, v);if(n == -1){//if(G->type == DG || G->type == UDG){G->vertex[G->vexnum].data = v;G->vertex[G->vexnum].firstarc = NULL;G->vexnum++;return true;}elsereturn false;}bool insert_arc(ListGraph *G, VertexType v, VertexType w){int i, j;ArcNode *p;bool flag = true;i = locate_vertex(G, v);j = locate_vertex(G, w);if(i == -1|| j == -1)return false;for(p = G->vertex[i].firstarc; p->adjvex != w; p = p->nextarc);if(p->adjvex == w) flag = false;for(p = G->vertex[j].firstarc; p->adjvex != v; p = p->nextarc);if(p->adjvex == v) flag = false;if(!flag) return false;if(G->type == UDG){p->nextarc = G->vertex[j].firstarc;p->adjvex = v;G->vertex[j].firstarc = p; }p->nextarc = G->vertex[i].firstarc;p->adjvex = w;G->vertex[i].firstarc = p; G->arcnum++;return true; }

?

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的邻接表1 - 试在邻接表存储结构上实现图的基本操作 insert_vertex 和 insert_arc-数据结构-图-icoding的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。