Порядок словаря - PullRequest
       4

Порядок словаря

1 голос
/ 02 сентября 2011

Я использую это var ordered = dictionary.Keys.OrderBy(x => x); для заказа словаря.

Это прекрасно работает, упорядочивая словарь в алфавитном порядке, и я хотел бы сохранить его таким образом и добавить несколько исключений ...

Итак, прямо сейчас упорядоченный словарь для вывода выглядит так:

1: "0603C" "113456" 1
2: "0603C" "984132" 8
3: "0603R" "11115" 3
4: "0603R" "13554" 1
5: "1608C_1.0" "119764" 2
6: "1608C_1.0" "147429" 54
7: "1608R_1.0" "122951" 4
8: "1608R_1.0" "147446" 1
9: "1608R_1.0" "147448" 23
10: "3216" "110762" 2
11: "TANT23" "119764" 2
//more here...

.. но я бы хотел, чтобы он выглядел так:

1: "0603R" "11115" 3
2: "0603R" "13554" 1
3: "0603C" "113456" 1
4: "0603C" "984132" 8
5: "1608R_1.0" "122951" 4    //**NOTICE**: The "R" and "C" endings after 1608 and 0603
6: "1608R_1.0" "147446" 1    // were switched. I would like to switch all "C" and "R"
7: "1608R_1.0" "147448" 23   // endings if they are the same value before.
8: "1608C_1.0" "119764" 2
9: "1608C_1.0" "147429" 54
10: "3216" "110762" 2
11: "TANT23" "119764" 2
//more here...

Вот чтомой код выглядит так:

StreamWriter sw = new StreamWriter(saveFile.FileName);
Dictionary<string, int> dictionary = new Dictionary<string, int>();
List<string> lineList = new List<string>();
int j = 1;
lineList = theFuji1List.Select(line =>
{
    int nameLength = line.Name.Length;

    if (line.PartDescription != "")
        return line.PartDescription + " " line.PartNumber + " " + line.TWidth + " " + line.Name.Remove(1, nameLength - 1) + "\n";

    else
        return "N/A " + line.PartNumber + " " + line.TWidth + " " + line.Name.Remove(1, nameLength - 1) + "\n";
})
    .Where(x => !(x.Contains("FID") || x.Contains("EXCLUDE")))
    .ToLisT();

foreach (string word in lineList)
{
    if (dictionary.ContainsKey(word))
        dictionary[word]++;
    else
        dictionary[word] = 1;
}

var ordered = dictionary.Keys.Orderby(x => x);   //This is what I think I need to change?

foreach (string key in ordered)
{
    string[] splitKey = key.Split(' ');

    sw.WriteLine(string.Format("{0}: \"{1}\" \"{2}\" {3}", j, splitKey[0], splitKey[1], dictionary[key]));
    j++;
}

Ответы [ 3 ]

4 голосов
/ 02 сентября 2011

Просто измените «R» на «B» для выражения сортировки, чтобы оно опускалось до «C»:

var ordered = dictionary.Keys.Orderby(x => Regex.Replace(x, @"^(\d+)R", "$1B"));

Это не изменит ваши ключи - это повлияет только на сортировку.

3 голосов
/ 02 сентября 2011

OrderBy() имеет перегрузку OrderBy(Func<>, IComparer<>), к которой вы можете передать свой собственный компаратор.

EDIT:

Вы можете реализовать свой собственный класс сравнения следующим образом:

public class CustomComparer: IComparer<String>
{
    public int Compare(object x, object y)
    {
         // perform comparison
         // return 0 if two items are equal, less than zero if x is less than y, and greater than zero if x is greater than y.
    }
}
1 голос
/ 02 сентября 2011

Я бы использовал регулярное выражение в реализации IComparer и передал бы это в инструкцию OrderBy:

var ordered = dictionary.Keys.OrderBy(x => x, new CodeComparer());

Где

private class CodeComparer : IComparer<string>
{
    public int Compare(string left, string right)
    {
        // TODO: Use a regex or other method to split into components
        string[] leftComponents, rightComponents;

        for (int i = 0; i < Math.Min(leftComponents.Length, rightComponents.Length; i++)
        {
            var componentComparison = StringComparer.InvariantCultureIgnoreCase.CompareTo(leftComponents[i], rightComponents[i]);
            if (componentComparison != 0)
            {
                if (i == 1) // Special case to flip the "R" and "C"
                {
                    return componentComparison * -1;
                }
                // TODO: Add any other special cases
                return componentComparison;
            }
        }

        // They are equal up to this point, therefore let the more detailed (i.e. bigger) item come after the shorter
        return leftComponents.Length.CompareTo(rightComponents.Length);
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...