map=new Vector<Vector<Integer>>(m);
for(int i=0;i<m;++i) {
Vector<Integer>temp=new Vector<Integer>();
for(int j=0;j<m;++j) {
temp.add(-1);
}
map.add(temp);
}
原文地址:https://www.cnblogs.com/z2529827226/p/11620913.html
时间: 2024-11-10 07:43:29