⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 distcalc.pl.in

📁 Lin-Kernighan heuristic for the TSP and minimum weight perfect matching
💻 IN
字号:
#! @PERL@# @configure_input@# distcalc.pl# Read a TSPLIB instance on the input, followed by pairs of vertices u,v.# For each pair $u,v$, output the distance between u and v in that# instance.# The TSPLIB instance must end with EOF, so we know where to start looking# at pairs of vertices.# The vertices are 1-based, just like in TSPLIB instances.use TSP;$|=1;$tsp = new TSP;$tsp->read(\*STDIN);#$tsp->write(\*STDOUT);while (<>) {	if (m/(\d+)\s+(\d+)/) {		$u = $1;		$v = $2;		print "u is $u v is $v\n";		print "Distance between $u and $v is ",$tsp->cost($u,$v),"\n";	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -