图的存储结构实践C++

这是无向图的邻接矩阵表示

#include <iostream>
#include <cstring>
#define MAXSIZE 100
typedef int vertexType;
typedef int edgeType;
typedef struct {
    vertexType vertexList[MAXSIZE];
    edgeType edgeMatrix[MAXSIZE][MAXSIZE];
    int vertexNumber, edgeNumber;
}AdjacencyGraph;

class UndirectedAGraph {
public:
    AdjacencyGraph *G;

    UndirectedAGraph() {
        G = (AdjacencyGraph* )malloc(sizeof(AdjacencyGraph));
        memset(G->vertexList, 0, sizeof(G->vertexList));
        memset(G->edgeMatrix, 0, sizeof(G->edgeMatrix));
    }

    int locateVertex(vertexType v);
    void createVertexList();
    void createEdgeMatrix();
    void createAdjacencyGraph();
};

int UndirectedAGraph::locateVertex(vertexType v) {
    for (int i = 0; i < G->vertexNumber; i++) {
        if (G->vertexList[i] == v) return i;
    }
    return -1;
}

void UndirectedAGraph::createVertexList() {
    std::cout << "Input Vertex Number of the undirected graph:" << std::endl;
    int vertexNumber;
    std::cin >> vertexNumber;
    G->vertexNumber = vertexNumber;

    std::cout << "Input All vertices:" << std::endl;
    int i = 0;
    while (vertexNumber--) {
        int vertex;
        std::cin>>vertex;
        G->vertexList[i++] = vertex;
    }
}

void UndirectedAGraph::createEdgeMatrix() {
    std::cout << "Input Edge number of the undirected graph:" << std::endl;
    int edgeNumber;
    std::cin >> edgeNumber;
    G->edgeNumber = edgeNumber;

    while (edgeNumber--) {
        std::cout << "Input edge:" << std::endl;
        int i, j, a, b;
        std::cin >> a >> b;
        i = locateVertex(a);
        j = locateVertex(b);
        if (i && j) {
            G->edgeMatrix[i][j] = 1;
            G->edgeMatrix[j][i] = 1;
        }
    }
}

void UndirectedAGraph::createAdjacencyGraph() {
    createVertexList();
    createEdgeMatrix();
}

int main() {
    UndirectedAGraph g;
    g.createAdjacencyGraph();
    std::cout << "Vertex List:" << std::endl;
    for (int i = 0; i < g.G->vertexNumber; i++) {
        std::cout << g.G->vertexList[i] << " ";
    }
    std::cout << std::endl;

    std::cout << "Edge Matrix:" << std::endl;
    for (int i = 0; i < g.G->vertexNumber; i++) {
        for (int j = 0; j < g.G->vertexNumber; j++) {
            std::cout << g.G->edgeMatrix[i][j] << " ";
        }
        std::cout << std::endl;
    }
}

有限带权图的邻接矩阵

#include <iostream>

template <typename V, typename E>
class DirectAGraph {
private:
    V *vertexList;
    E **edgeMatrix;
    int vertexNumber;
    int edgeNumber;
public:
    DirectAGraph (int vertexNumber, int edgeNumber) {
        this->vertexNumber = vertexNumber;
        this->edgeNumber = edgeNumber;
        this->vertexList = new V[vertexNumber]{0};
        this->edgeMatrix = new E*[vertexNumber];
        for (int i = 0; i < vertexNumber; i++) {
            this->edgeMatrix[i] = new E[vertexNumber]{0};
        }

        std::cout << "Input " << vertexNumber << " vertices." << std::endl;
        int index = 0;
        while (vertexNumber--) {
            std::cin >> this->vertexList[index++];
        }

        std::cout << "Input " << edgeNumber << " edges with edge value." << std::endl;
        while(edgeNumber--) {
            int i, j;
            E w;
            V a, b;
            std::cin >> a >> b;
            std::cin >> w;
            i = locateVertex(a);
            j = locateVertex(b);
            if (i!=-1&&j!=-1) {
                edgeMatrix[i][j] = w;
            } else {
                std::cout << "Error!";
                exit(0);
            }
        }
    }

    int locateVertex(V v) {
        for (int i = 0; i < this->vertexNumber; i++) {
            if (this->vertexList[i] == v) return i;
        }
        return -1;
    }

    void showGraph() {
        std::cout << "Here show the data structure of adjacency graph." << std::endl;
        std::cout << "Vertex List:" << std::endl;
        for (int i = 0; i < this->vertexNumber; i++) {
            std::cout << this->vertexList[i] << " ";
        }
        std::cout << std::endl << "Edge Matrix:" << std::endl;
        for (int i = 0; i < this->vertexNumber; i++) {
            for (int j = 0; j < this->vertexNumber; j++) {
                std::cout << this->edgeMatrix[i][j] << " ";
            }
            std::cout << std::endl;
        }
    }
};

int main() {
    DirectAGraph<char, int> g(6, 9);
    g.showGraph();
}

邻接表创建

#include <stdio.h>
#include <stdlib.h>
#define MAXSIZE 100

typedef struct edgeNode{
    int adjId;
    int weight;
    edgeNode *next;
};

typedef struct vertexNode{
    int data;
    edgeNode *first;
};

typedef struct undirectedAGraph{
    int vertexNumber;
    int edgeNumber;
    vertexNode vertexList[MAXSIZE];
};

int locateVertex(undirectedAGraph* G, int v) {
    for (int i = 0; i < G->vertexNumber; i++){
        if (v == G->vertexList[i].data) return i;
    }
    return -1;
}

void initAGraph(undirectedAGraph* &G) {
    G = (undirectedAGraph *)malloc(sizeof(undirectedAGraph));
    printf("Input vertex number:");
    scanf("%d", &G->vertexNumber);
    printf("Input edge number:");
    scanf("%d", &G->edgeNumber);
    for (int i = 0; i < G->vertexNumber; i++) {
        G->vertexList[i].first = NULL;
    }

}

void createAGraph(undirectedAGraph* &G) {
    printf("Input %d vertices.\n", G->vertexNumber);
    int vertexNumber = G->vertexNumber;
    int index = 0;
    while (vertexNumber--) {
        scanf("%d", &G->vertexList[index++].data);
    }

    printf("Input %d edges with edge weight.\n", G->edgeNumber);
    int edgeNumber = G->edgeNumber;
    while (edgeNumber--) {
        int i, j, a, b, w;
        scanf("%d %d %d", &a, &b, &w);
        i = locateVertex(G, a);
        j = locateVertex(G, b);
        if (i!=-1&&j!=-1) {
            edgeNode *e1 = (edgeNode*)malloc(sizeof(edgeNode));
            edgeNode *e2 = (edgeNode*)malloc(sizeof(edgeNode));
            e1->weight = w;
            e2->weight = w;
            e1->adjId = j;
            e2->adjId = i;
            e1->next = G->vertexList[i].first;
            G->vertexList[i].first = e1;
            e2->next = G->vertexList[j].first;
            G->vertexList[j].first = e2;
        }
    }
}

void showAGraph(undirectedAGraph *G) {
    printf("Vertex List:\n");
    for (int i = 0; i < G->vertexNumber; i++) {
        printf("%d ",G->vertexList[i].data);
    }
    printf("\nEdge Link Table:\n");
    for (int i = 0; i < G->vertexNumber; i++) {
        printf("No.%d V.%d", i, G->vertexList[i].data);
        edgeNode * temp = G->vertexList[i].first;
        while (temp) {
            printf("-%d->%d", temp->weight, temp->adjId);
            temp = temp->next;
        }
        printf("-->NULL\n");
    }
}

int main() {
    printf("Declaring...\n");
    undirectedAGraph *g;
    printf("Initialing...\n");
    initAGraph(g);
    printf("Creating...\n");
    createAGraph(g);
    printf("Showing...\n");
    showAGraph(g);
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容