show/hide this revision's text 3 deleted 35 characters in body

Try this function.

const alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

// Returns name of column for specified 0-based index.
public static string GetColumnName(int index)
{
    var name = new char[3]; // Assumes 3-letter column name max.
    int rem = index;
    int div = 17576; // 26 ^ 3

    for (int i = 02; i < 2>= 0; i++)
    {
        name[i] = alphabet[rem / div];
        rem %= div;
        div /= 26;
    }

    if (i index >= 676)
        return name[2] + name[1] + name[0]new string(name, 3);
    else if (i index >= 26)
        return name[2] + name[1]new string(name, 2);
    else
        return name[2]new string(name, 1);
}

Now it shouldn't take up that much memory to pre-generate each column name for every index and store them in a single huge array, so you shouldn't need to look up the name for any column twice.

If I can think of any further optimisations, I'll add them later, but I believe this function should be pretty quick, and I doubt you even need this sort of speed if you do the pre-generation.

show/hide this revision's text 2 deleted 1 characters in body

Try this function.

const alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

// Returns name of column for specified 0-based index.
public static string GetColumnName(int index)
{
    var name = new char[3]; // Assumes 3-letter column name max.
    int rem = index;
    int div = 17576; // 26 ^ 3

    for (int i = 0; i < 2; i++)
    {
        name[i] = alphabet[rem / div];
        rem %= div;
        div /= 26;
    }

    if (i >= 676)
        return name[2] + name[1] + name[0];
    else if (i >= 67626)
        return name[2] + name[1];
    else
        return name[2];
}

Now it shouldn't take up that much memory to pre-generate each column name for every index and store them in a single huge array, so you shouldn't need to look up the name for any column twice.

If I can think of any further optimisations, I'll add them later, but I believe this function should be pretty quick, and I doubt you even need this sort of speed if you do the pre-generation.

show/hide this revision's text 1

Try this function.

const alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

// Returns name of column for specified 0-based index.
public static string GetColumnName(int index)
{
    var name = new char[3]; // Assumes 3-letter column name max.
    int rem = index;
    int div = 17576; // 26 ^ 3

    for (int i = 0; i < 2; i++)
    {
        name[i] = alphabet[rem / div];
        rem %= div;
        div /= 26;
    }

    if (i >= 676)
        return name[2] + name[1] + name[0];
    else if (i >= 676)
        return name[2] + name[1];
    else
        return name[2];
}

Now it shouldn't take up that much memory to pre-generate each column name for every index and store them in a single huge array, so you shouldn't need to look up the name for any column twice.

If I can think of any further optimisations, I'll add them later, but I believe this function should be pretty quick, and I doubt you even need this sort of speed if you do the pre-generation.