示例#1
0
 private void InitializeTree(int width, int height)
 {
     _innerMatrix = new KruskalNode[width, height];
     for (int i = 0; i < width; i++)
         for (int j = 0; j < height; j++)
             _innerMatrix[i, j] = new KruskalNode();
 }
示例#2
0
 private void InitializeTree(int width, int height)
 {
     _innerMatrix = new KruskalNode[width, height];
     for (int i = 0; i < width; i++)
     {
         for (int j = 0; j < height; j++)
         {
             _innerMatrix[i, j] = new KruskalNode();
         }
     }
 }
示例#3
0
 public KruskalNode()
 {
     Parent = null;
 }
示例#4
0
 public KruskalNode()
 {
     Parent = null;
 }