Beispiel #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();
 }
Beispiel #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();
         }
     }
 }
Beispiel #3
0
 public KruskalNode()
 {
     Parent = null;
 }
Beispiel #4
0
 public KruskalNode()
 {
     Parent = null;
 }