我想从我的参考网络中删除一个人,我首先创建原始二维数组的副本,然后通过 checkVertex ArrayList 重新制作大小更小的二维网络数组,checkVertex 是我唯一顶点的列表。所以问题是,当我重新填充 size-1 的新数组 [] [] 时是错误的,我不太确定如何修复它。
public static void deletePerson(String name)
{
//checkVertex is a list of the unique vertices
int rowNum = 0;
int colNum = 0;
int origRows = checkVertex.size() + 1; //+1 is for the [0][0] null spot
int origCols = checkVertex.size() + 1;
String person = name;
String[][] copy = matrix.clone();
for(int x=0; x<checkVertex.size() + 1; x++)
{
if( matrix[x][0] == null )
{
//do nothing
}
else if( matrix[x][0].equalsIgnoreCase(person) )
{
rowNum = x;
break;
}
}
for(int z=0; z<checkVertex.size() + 1; z++)
{
if( matrix[0][z] == null )
{
//do nothing
}
else if( matrix[0][z].equalsIgnoreCase(person) )
{
colNum = z;
break;
}
}
//Now remove them from the list of vertexes
for(int i=0; i<checkVertex.size(); i++)
{
if(checkVertex.get(i).equalsIgnoreCase(person))
{
checkVertex.remove(i);
break;
}
}
setNum(checkVertex.size());
//Build the sides of the matrix
//Starting with the first col
matrix = new String[checksSize + 1][checksSize + 1];
for(int x = 0 ; x < checksSize ; x++)
{
String vertice = checkVertex.get(x);
if( x == rowNum )
{
continue;
}
else
{
matrix[x+1][0] = vertice;
}
}
//Now get the top row
for(int x = 0 ; x < checksSize ; x++)
{
String vertice = checkVertex.get(x);
if( x == colNum )
{
continue;
}
else
{
matrix[0][x+1] = vertice;
}
}
//Now fill in the references
for(int i=1; i<checkVertex.size() + 2; i++)
{
if( i == rowNum )
{
continue;
}
else
{
for(int j=1; j<checkVertex.size() + 2; j++)
{
if( j == colNum )
{
//continue;
matrix[i][j-1] = copy[i][j];
j++;
}
else
{
matrix[i][j] = copy[i][j];
}
}//end for j
}
}//end for i
}//END deletePerson(String name)