动态规划之最短路径C语言实现

#include<stdio.h> #include<stdlib.h> #define number_places 13 typedef struct{ int min_dist;//最短距离 int num_path;//最短路径地点个数 int *p_path;//最短路径点 }DpStruct; void dp(int (*const data)[number_places
相关文章
相关标签/搜索