简单有向图(c++版)

本文介绍如何使用C++编程实现有向图的数据结构及其拓扑排序算法。包括DiGraph.h头文件定义,main.cpp中实现的具体代码,以及Text.txt作为测试数据。通过实例演示了有向图的构建和操作。
摘要由CSDN通过智能技术生成

DiGraph.h

#pragma once
#include <iterator>
#include <fstream>
#include <memory>
#include <array>
#include <iostream>
#include <stack>
#include <vector>
#include <queue>

class DiGraph
{
private:
    class AdjacentcyList
    {
    private:
        class Node
        {
        public:
            std::shared_ptr<Node> next;
            int link;
        public:
            Node(const int& l) :link(l), next(nullptr)
            {

            }
        };
        std::shared_ptr<Node> head = nullptr;
    public:
        class Iterator
        {
        private:
            std::shared_ptr<Node> it;
        public:
            Iterator(std::shared_ptr<Node> i) :it(i)
            {

            }
            bool operator == (const Iterator& rhs)const
            {
                return it == rhs.it;
            }
            bool operator != (const Iterator& rhs)const
            {
                return !(*this == rhs);
            }
            const Iterator& operator ++()
            {
                it = it->next;
                return *this;
            }
            int operator *()const
            {
                return it->link;
            }
        };
public:
/**********************************************
函数名称:  addNode
函数说明:  为adjacentcyList增加结点
返回值:       void
**********************************************/
        void addNode(const int& i)
        {
            if (head == nullptr)
            {
                head = std::make_shared<Node>(Node(i));
                return;
            }
            std::shared_ptr<Node> curr = head;
            while (curr->next != nullptr)
                curr = curr->next;
            curr->next = std::make_shared<Node>(Node(i));
            return;
        }
        Iterator begin()const
        {
            return Iterator(head);
        }
        Iterator end()const
        {
            return Iterator(nullptr);
        }
    };
private:
    std::unique_ptr<AdjacentcyList[]> adj;
    int npoint;
    int nedge;
public:
    //构造有向图
    DiGraph(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值