鱼C论坛

 找回密码
 立即注册
查看: 707|回复: 2

算法设计题

[复制链接]
发表于 2023-11-12 00:30:15 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
算法设计题:假设图G采用邻接表存储,设计一个算法,输出图G中从顶点u到v的所有简单路径。(用C语言解决)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-12 00:30:25 | 显示全部楼层
#include <stdio.h>
#include <stdlib.h>

#define MAX_VERTICES 100

typedef struct Node {
    int vertex;
    struct Node* next;
} Node;

typedef struct {
    Node* head;
} AdjList[MAX_VERTICES];

void addEdge(AdjList adjList, int src, int dest) {
    Node* newNode = (Node*)malloc(sizeof(Node));
    newNode->vertex = dest;
    newNode->next = adjList[src].head;
    adjList[src].head = newNode;
}

void printAllPathsUtil(AdjList adjList, int u, int v, int visited[], int path[], int pathIndex) {
    visited[u] = 1;
    path[pathIndex] = u;
    pathIndex++;

    if (u == v) {
        for (int i = 0; i < pathIndex - 1; i++) {
            printf("%d -> ", path[ i]);
        }
        printf("%d\n", path[pathIndex - 1]);
    } else {
        Node* current = adjList[u].head;
        while (current != NULL) {
            if (!visited[current->vertex]) {
                printAllPathsUtil(adjList, current->vertex, v, visited, path, pathIndex);
            }
            current = current->next;
        }
    }

    visited[u] = 0;
    pathIndex--;
}

void printAllPaths(AdjList adjList, int u, int v, int numVertices) {
    int visited[MAX_VERTICES] = {0};
    int path[MAX_VERTICES];
    int pathIndex = 0;

    printAllPathsUtil(adjList, u, v, visited, path, pathIndex);
}

int main() {
    int numVertices = 4;
    AdjList adjList;
    for (int i = 0; i < numVertices; i++) {
        adjList[ i].head = NULL;
    }

    addEdge(adjList, 0, 1);
    addEdge(adjList, 0, 2);
    addEdge(adjList, 1, 2);
    addEdge(adjList, 2, 0);
    addEdge(adjList, 2, 3);
    addEdge(adjList, 3, 3);

    int u = 2, v = 3;
    printf("从顶点%d到顶点%d的所有简单路径为:\n", u, v);
    printAllPaths(adjList, u, v, numVertices);

    return 0;
}

这段代码实现了一个从顶点u到v的所有简单路径的算法。首先定义了一个邻接表结构,然后使用addEdge函数向邻接表中添加边。接着使用printAllPathsUtil函数递归地找到从顶点u到顶点v的所有路径,并将其打印出来。最后在main函数中构建了一个图,并调用printAllPaths函数进行测试。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-11-12 00:40:22 | 显示全部楼层
本帖最后由 sususususu 于 2023-11-12 00:43 编辑
isdkz 发表于 2023-11-12 00:30
这段代码实现了一个从顶点u到v的所有简单路径的算法。首先定义了一个邻接表结构,然后使用addEdge函数 ...


为什么报错呢?
anonymous type with no linkage used to declare function 'void printAllPaths(<anonymous struct>*, int, int, int)' with linkage [-fpermissive]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-21 19:07

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表