欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

aaa

程序员文章站 2024-02-14 12:47:28
...
#include <list> 
#include <iostream> 
using namespace std ; 
 
typedef list<int> LISTINT; 
 
LISTINT listAnother; 
LISTINT list_result; 
 
int d[4][4]={{-1,3,6,7},{2,-1,8,6},{7,3,-1,5,},{7,3,7,-1}}; //路径权值
int matrix_length=4;