Shortest path in multistage graphs 图的最短路径问题

Shortest path in multistage graphs.Find the shortest path from 0 to 15 for the following graph.

A multistage graph is a graph (1) G=(V,E) with V partitioned into K>= 2 disjoint subsets such that if (a,b) is in E, then a is in Vi, and b is in Vi+1 for some subsets in the partition; and (2) | V1| = | VK | = 1.


djstra算法

也可以用动态规划解决。以后添加

<span style="color:#333333;">#include<stdio.h>
#include<stdlib.h>

#define max 100
#define vertex 16

void print(int b,int e,int path[]){
    if(e == b){
         printf("%d",b);
         return ;     
    }
    else{    
        print(b, path[e], path);
        printf(" --> %d",e);
    }  
}

int path(int a[][vertex]){
    int i,j,k,b,e,min;
    int w[vertex];
    int path[vertex];
    int temp[vertex];
    
    printf("pleast input the beginning point.\n");						//输入起始点
    scanf("%d",&b);
    
    for(i = 0;i < vertex;i++){
          w[i] = a[b][i];
          if(w[i] < max && w[i] > 0)
               path[i] = b;
          temp[i] = 0;
    }
    
    temp[b] = 1;
    w[b] = 0;
    k = b;
    
    for(i = 0;i < vertex;i++){
          min = max;
          for(j = 0;j < vertex;j++){
               if(temp[j] == 0 && w[j] < min){
                    min = w[j];
                    k = j;
               } 
          }
          
          temp[k] = 1;
          for(j = 0;j < vertex;j++){
               if(temp[j] == 0 && w[k] + a[k][j] < w[j]){
                    w[j] = w[k] + a[k][j];
                    path[j] = k;
               }  
          }
    } 

    printf("please input the ending point.\n");						//输入结束的点
    scanf("%d",&e);
    
    print(b, e, path);
}

void init(int a[][vertex]){   									//图结构的初始化
    for(int i = 0;i < vertex;i++) 
         for(int j = 0;j < vertex;j++)
              a[i][j] = max;
    a[0][1] = 5;a[0][2] = 3;
    a[1][0] = 5;a[1][3] = 1;a[1][4] = 3;a[1][5] = 6;
    a[2][0] = 3;a[2][4] = 8;a[2][5] = 7;a[2][6] = 6;   
    a[3][1] = 1;a[3][7] = 6;a[3][8] = 8;
    a[4][1] = 3;a[4][7] = 3;a[4][8] = 5;
    a[5][1] = 5;a[5][2] = 7;a[5][8] = 3;a[5][9] = 3;
    a[6][2] = 6;a[6][8] = 8;a[6][9] = 4;
    a[7][3] = 6;a[7][4] = 3;a[7][10] = 2;a[7][11] = 2;
    a[8][3] = 8;a[8][4] = 5;a[8][5] = 3;a[8][6] = 3;a[8][11] = 1;a[8][12] = 2;
    a[9][5] = 3;a[9][6] = 4;a[9][11] = 3;a[9][12] = 3;
    a[10][7] = 2;a[10][13] = 3;a[10][14] = 5;
    a[11][7] = 2;a[11][8] = 1;a[11][9] = 3;a[11][13] = 5;a[11][14] = 2;
    a[12][8] = 2;a[12][9] = 3;a[12][13] = 6;a[12][14] = 6;
    a[13][10] = 3;a[13][11] = 5;a[13][12] = 6;a[13][15] = 4;
    a[14][10] = 5;a[14][11] = 2;a[14][12] = 6;a[14][15] = 3;
    a[15][13] = 4;a[15][14] = 3;
}

int main(){
    int a[vertex][vertex];
    init(a);   
    path(a);
    printf("\n");
    system("pause");
    return 0 ;    
}
</span>


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Practice 1 Date: Monday, March 18th, 2013 We highly encourage being environment friendly and trying all problems on your own. Implement exercise 2.3-7. Implement priority queue. Implement Quicksort and answer the following questions. (1) How many comparisons will Quicksort do on a list of n elements that all have the same value? (2) What are the maximum and minimum number of comparisons will Quicksort do on a list of n elements, give an instance for maximum and minimum case respectively. Give a divide and conquer algorithm for the following problem: you are given two sorted lists of size m and n, and are allowed unit time access to the ith element of each list. Give an O(lg m + lgn) time algorithm for computing the kth largest element in the union of the two lists. (For simplicity, you can assume that the elements of the two lists are distinct). Practice 2 Date: Monday, April 1st, 2013 We highly encourage being environment friendly and trying all problems on your own. Matrix-chain product. The following are some instances. Longest Common Subsequence (LCS). The following are some instances. X: xzyzzyx Y: zxyyzxz X:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCALLAAQANKESSSESFISRLLAIVAD Y:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCTLLAAQANKENSNESFISRLLAIVAG Longest Common Substring. The following are some instances. X: xzyzzyx Y: zxyyzxz X:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCALLAAQANKESSSESFISRLLAIVAD Y:MAEEEVAKLEKHLMLLRQEYVKLQKKLAETEKRCTLLAAQANKENSNESFISRLLAIVAG Max Sum. The following is an instance. (-2,11,-4,13,-5,-2) Shortest path in multistage graphs. Find the shortest path from 0 to 15 for the following graph.   A multistage graph is a graph (1) G=(V,E) with V partitioned into K >= 2 disjoint subsets such that if (a,b) is in E, then a is in Vi , and b is in Vi+1 for some subsets in the partition; and (2) | V1 | = | VK | = 1.     Practice 3 Date: Monday, April 15th, 2013 We highly encourage being environment friendly and trying all problems on your own. Knapsack Problem. There are 5 items that have a value and weight list below, the knapsack can contain at most 100 Lbs. Solve the problem both as fractional knapsack and 0/1 knapsack. A simple scheduling problem. We are given jobs j1, j2… jn, all with known running times t1, t2… tn, respectively. We have a single processor. What is the best way to schedule these jobs in order to minimize the average completion time. Assume that it is a nonpreemptive scheduling: once a job is started, it must run to completion. The following is an instance. (j1, j2, j3, j4) : (15,8,3,10) Single-source shortest paths. The following is the adjacency matrix, vertex A is the source.  A B C D E A -1 3 B 3 2 2 C D 1 5 E -3 All-pairs shortest paths. The adjacency matrix is as same as that of problem 3.(Use Floyd or Johnson’s algorithm)     Practice 4 Date: Monday, May 8th, 2013 We highly encourage being environment friendly and trying all problems on your own. 0/1 Knapsack Problem. There are 5 items that have a value and weight list below, the knapsack can contain at most 100 Lbs. Solve the problem using back-tracking algorithm and try to draw the tree generated. Solve the 8-Queen problem using back-tracking algorithm.    

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值