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);
        }
    }
}
}
link|improve this question
1  
where have you stuck? – Reniuz Dec 15 '11 at 12:29
1  
What's your question / problem? Please show only the code relevant to your problem. – Daniel Hilgarth Dec 15 '11 at 12:29
related? stackoverflow.com/a/5132458/85371 – sehe Dec 15 '11 at 12:47
@userNNNN We're missing the actual question. – Henk Holterman Dec 15 '11 at 13:00
1  
Which part of your code do you want to change? – GertArnold Dec 15 '11 at 15:32
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.