国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Dijkstra算法的C語言程序

2019-11-14 10:38:23
字體:
來源:轉載
供稿:網友

Dijikstra算法是從一個頂點到其余各頂點的最短路徑算法,解決的是有向圖中最短路徑問題。該算法是由荷蘭計算機科學家迪杰斯特拉于1959年提出的。

程序來源:Dijkstra's Algorithm。

百度百科:Dijkstra算法。

維基百科:Dijkstra's Algorithm。

C語言程序(去除了原文中非標準的C語言代碼):

#include<stdio.h>#define INFINITY 9999#define MAX 10void dijikstra(int G[MAX][MAX], int n, int startnode);int main(){    int G[MAX][MAX], i, j, n, u;    PRintf("/nEnter the no. of vertices:: ");    scanf("%d", &n);    printf("/nEnter the adjacency matrix::/n");    for(i=0;i < n;i++)        for(j=0;j < n;j++)            scanf("%d", &G[i][j]);    printf("/nEnter the starting node:: ");    scanf("%d", &u);    dijikstra(G,n,u);}void dijikstra(int G[MAX][MAX], int n, int startnode){    int cost[MAX][MAX], distance[MAX], pred[MAX];    int visited[MAX], count, mindistance, nextnode, i,j;    for(i=0;i < n;i++)        for(j=0;j < n;j++)            if(G[i][j]==0)                cost[i][j]=INFINITY;            else                cost[i][j]=G[i][j];    for(i=0;i< n;i++) {        distance[i]=cost[startnode][i];        pred[i]=startnode;        visited[i]=0;    }    distance[startnode]=0;    visited[startnode]=1;    count=1;    while(count < n-1) {        mindistance=INFINITY;        for(i=0;i < n;i++)            if(distance[i] < mindistance&&!visited[i]) {                mindistance=distance[i];                nextnode=i;            }        visited[nextnode]=1;        for(i=0;i < n;i++)            if(!visited[i])                if(mindistance+cost[nextnode][i] < distance[i]) {                    distance[i]=mindistance+cost[nextnode][i];                    pred[i]=nextnode;                }            count++;    }    for(i=0;i < n;i++)        if(i!=startnode) {            printf("/nDistance of %d = %d", i, distance[i]);            printf("/nPath = %d", i);            j=i;            do {                j=pred[j];                printf(" <-%d", j);            }            while(j!=startnode);        }    printf("/n");}程序運行結果:

Enter the no. of vertices:: 4Enter the adjacency matrix::0 1 1 11 0 1 01 1 0 11 0 1 0Enter the starting node:: 1Distance of 0 = 1Path = 0 <-1Distance of 2 = 1Path = 2 <-1Distance of 3 = 2Path = 3 <-0 <-1


上一篇:[LeetCode]15.3Sum

下一篇:0006 數組

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 克东县| 息烽县| 栾川县| 云阳县| 怀来县| 贺兰县| 永福县| 芮城县| 蒙阴县| 泗阳县| 浦江县| 农安县| 塔河县| 正镶白旗| 手游| 德昌县| 恩施市| 定兴县| 珲春市| 肃北| 浦北县| 镇江市| 来宾市| 贵德县| 古田县| 泰宁县| 于都县| 获嘉县| 和政县| 江源县| 五大连池市| 五台县| 山阳县| 苗栗县| 安康市| 安康市| 浦县| 阿克苏市| 炎陵县| 宽甸| 罗田县|