I am developing Dijkstra's algorithm and I have a matrix with chars. I want to convert this to an array of strings. Can someone help me?
static char[,] T =
{
{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K'},
{'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'A'},
{'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'A', 'B'},
{'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'A', 'B', 'C'},
{'E', 'F', 'G', 'H', 'I', 'J', 'K', 'A', 'B', 'C', 'D'},
{'F', 'G', 'H', 'I', 'J', 'K', 'A', 'B', 'C', 'D', 'E'},
{'G', 'H', 'I', 'J', 'K', 'A', 'B', 'C', 'D', 'E', 'F'},
{'H', 'I', 'J', 'K', 'A', 'B', 'C', 'D', 'E', 'F', 'G'},
{'I', 'J', 'K', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'},
{'J', 'K', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'},
{'K', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'}
};
static void Main()
{
// get the list of arcs
string[] arcs = File.ReadAllLines("graph.txt");
// create an 11 X 11 array and set all elements to -1
int[,] L0 = new int[11, 11];
for(int i = 0; i < 11; i++)
{
for(int j = 0; j < 11; j++)
{
L0[i,j] = -1;
}
}
// calculations
Console.Clear();
Console.WriteLine("press Q at any time to quit\n");
while(true)
{
// get start and end nodes
char c1, c2;
do
{
Console.Write("Start Node A - K : ");
c1 = Console.ReadLine().ToUpper()[0];
if (c1 == 'Q')
{
return;
}
}
while (!(c1 >= 'A' && c1 <= 'K'));
do
{
Console.Write("End Node A - K : ");
c2 = Console.ReadLine().ToUpper()[0];
if (c2 == 'Q')
{
return;
}
}
while (!(c2 >= 'A' && c2 <= 'K'));
// clone L0
int[,] L = (int[,])L0.Clone();
// create dictionary
Dictionary<char, int> dict = new Dictionary<char, int>();
int index = (int)c1 - 65;
for(int i = 0; i < 11; i++)
{
dict.Add(T[index,i], i);
}
// populate L
foreach(string arc in arcs)
{
string[] items = arc.Split(',');
int x = dict[items[0][0]];
int y = dict[items[1][0]];
int dist = int.Parse(items[2]);
L[x, y] = dist;
L[y, x] = dist;
}
// create and initialize a Dijkstra object
Dijkstra dijk = new Dijkstra(11, L);
// get results
dijk.Run();
int result = dijk.D[dict[c2]];
if (result > -1)
{
Console.WriteLine(enter code here"\nThe shortest distance from {0} to {1} is {2}\n", c1, c2, result);
}
else
{
Console.WriteLine("\nThere is no path from {0} to {1}\n", c1, c2);
}
}
}
}