117.info
人生若只如初见

C语言拓扑排序代码怎么写

下面是一个用C语言实现拓扑排序的示例代码:

#include 
#include 

#define MAXVERTICES 100

struct Graph {
    int vertices;
    int edges;
    int adjacencyMatrix[MAXVERTICES][MAXVERTICES];
};

void initializeGraph(struct Graph* graph, int vertices) {
    graph->vertices = vertices;
    graph->edges = 0;

    for (int i = 0; i < vertices; i++) {
        for (int j = 0; j < vertices; j++) {
            graph->adjacencyMatrix[i][j] = 0;
        }
    }
}

void addEdge(struct Graph* graph, int startVertex, int endVertex) {
    graph->adjacencyMatrix[startVertex][endVertex] = 1;
    graph->edges++;
}

void topologicalSortUtil(struct Graph* graph, int vertex, bool visited[], int stack[], int* stackIndex) {
    visited[vertex] = true;

    for (int i = 0; i < graph->vertices; i++) {
        if (graph->adjacencyMatrix[vertex][i] == 1 && !visited[i]) {
            topologicalSortUtil(graph, i, visited, stack, stackIndex);
        }
    }

    stack[(*stackIndex)++] = vertex;
}

void topologicalSort(struct Graph* graph) {
    bool visited[MAXVERTICES] = {false};
    int stack[MAXVERTICES];
    int stackIndex = 0;

    for (int i = 0; i < graph->vertices; i++) {
        if (!visited[i]) {
            topologicalSortUtil(graph, i, visited, stack, &stackIndex);
        }
    }

    printf("Topological Sort: ");

    while (stackIndex > 0) {
        printf("%d ", stack[--stackIndex]);
    }

    printf("\n");
}

int main() {
    struct Graph graph;
    int vertices, edges, startVertex, endVertex;

    printf("Enter the number of vertices in the graph: ");
    scanf("%d", &vertices);

    initializeGraph(&graph, vertices);

    printf("Enter the number of edges in the graph: ");
    scanf("%d", &edges);

    for (int i = 0; i < edges; i++) {
        printf("Enter the start and end vertex of edge %d: ", i + 1);
        scanf("%d %d", &startVertex, &endVertex);
        addEdge(&graph, startVertex, endVertex);
    }

    topologicalSort(&graph);

    return 0;
}

这个代码中,首先定义了一个结构体Graph来表示图,其中vertices表示顶点的个数,edges表示边的个数,adjacencyMatrix表示邻接矩阵。

然后定义了几个函数来操作图,包括initializeGraph用于初始化图,addEdge用于添加边,topologicalSortUtil用于递归实现拓扑排序,topologicalSort用于调用topologicalSortUtil进行拓扑排序。

main函数中,首先获取用户输入的顶点个数和边的个数,然后通过addEdge函数添加边,最后调用topologicalSort函数进行拓扑排序。

注意:该示例代码中使用邻接矩阵来表示图,适用于边数较少的情况。如果边数较多,推荐使用邻接表来表示图。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe652AzsLAwFTB1I.html

推荐文章

  • c语言中如何输入一个字符串

    在C语言中,可以使用scanf()函数来输入一个字符串。
    示例代码如下:
    #include int main() { char str[100]; // 声明一个字符数组来存储输入的字符串 p...

  • 怎么用c语言编写新年快乐代码

    使用C语言编写一个简单的新年快乐代码可以是这样的:
    #include int main() { printf("新年快乐!\n"); return 0;
    } 这段代码使用了C语言的标准输入输出...

  • c语言怎么创建一个队列

    在C语言中,可以使用数组或链表实现队列。以下是两种常见的队列实现方法: 使用数组: #include #define MAX_SIZE 100 // 定义队列结构体
    typedef struct {...

  • c语言中的max函数如何使用

    在C语言中,可以使用标准库函数max()来找到两个数中的较大值。使用max()函数需要包含头文件。
    以下是max()函数的使用方法:
    #include int max(int num...

  • maven怎么配置使用本地仓库

    要配置Maven使用本地仓库,您需要按照以下步骤进行操作: 确保您已经安装了Maven,并且已经设置好了Maven的环境变量。
    打开settings.xml文件,该文件位于Ma...

  • maven导入jar包的方法是什么

    在Maven项目中导入jar包有以下几种方法: 通过Maven Central Repository导入:在pom.xml文件中的dependencies标签中添加对应的jar包坐标,Maven会自动从Maven Ce...

  • linux怎么调整swap大小

    要调整Linux上的swap大小,可以按照以下步骤进行操作: 首先,检查当前系统上的swap分区或文件的大小和使用情况。可以使用以下命令查看swap的情况:
    swapon...

  • mac怎么重新分配windows空间

    在Mac上重新分配Windows空间的步骤如下: 打开Mac的“应用程序”文件夹,然后进入“实用工具”文件夹。
    打开“磁盘工具”应用程序。
    在左侧的侧边栏中...