电路布线问题算法
public class Dianlu {
public int[] c;
public int[][] size;
public int[] net;
public Dianlu(int[] b){
this.c=b;
this.size=new int[b.length][b.length];
//下标从1开始
this.net=new int[b.length];
}
public static void main(String[] args) {
int[] c = {
0,8,7,4,2,5,1,9,3,10,6}