2

c#で任意のプロパティのジェネリックリストを英数字で並べ替えることはできますか?質問が明確でない場合はお知らせください。例を示します。

前もって感謝します

注:このリンクはそれを実行しますが、英数字ではありません。誰かが私を助けることができますか? http://blog.codewrench.net/2009/04/14/sorting-a-generic-list-on-arbitrary-property/

4

2 に答える 2

1

これは高速の英数字ソートです(数値を使用する他のソートにも使用できます)。

C#英数字の並べ替えhttp://www.dotnetperls.com/alphanumeric-sorting

public class AlphanumComparatorFast : IComparer
{
    public int Compare(object x, object y)
    {
    string s1 = x as string;
    if (s1 == null)
    {
        return 0;
    }
    string s2 = y as string;
    if (s2 == null)
    {
        return 0;
    }

    int len1 = s1.Length;
    int len2 = s2.Length;
    int marker1 = 0;
    int marker2 = 0;

    // Walk through two the strings with two markers.
    while (marker1 < len1 && marker2 < len2)
    {
        char ch1 = s1[marker1];
        char ch2 = s2[marker2];

        // Some buffers we can build up characters in for each chunk.
        char[] space1 = new char[len1];
        int loc1 = 0;
        char[] space2 = new char[len2];
        int loc2 = 0;

        // Walk through all following characters that are digits or
        // characters in BOTH strings starting at the appropriate marker.
        // Collect char arrays.
        do
        {
        space1[loc1++] = ch1;
        marker1++;

        if (marker1 < len1)
        {
            ch1 = s1[marker1];
        }
        else
        {
            break;
        }
        } while (char.IsDigit(ch1) == char.IsDigit(space1[0]));

        do
        {
        space2[loc2++] = ch2;
        marker2++;

        if (marker2 < len2)
        {
            ch2 = s2[marker2];
        }
        else
        {
            break;
        }
        } while (char.IsDigit(ch2) == char.IsDigit(space2[0]));

        // If we have collected numbers, compare them numerically.
        // Otherwise, if we have strings, compare them alphabetically.
        string str1 = new string(space1);
        string str2 = new string(space2);

        int result;

        if (char.IsDigit(space1[0]) && char.IsDigit(space2[0]))
        {
        int thisNumericChunk = int.Parse(str1);
        int thatNumericChunk = int.Parse(str2);
        result = thisNumericChunk.CompareTo(thatNumericChunk);
        }
        else
        {
        result = str1.CompareTo(str2);
        }

        if (result != 0)
        {
        return result;
        }
    }
    return len1 - len2;
    }
}

利用方法

var unordered = new[] { "100F", "50F", "SR100", "SR9" };
var ordered = unordered.OrderBy(s => s, new AlphanumComparatorFast());

そしてここに問題についての素晴らしい記事があります:

人間の並べ替え:自然順http://www.codinghorror.com/blog/2007/12/sorting-for-humans-natural-sort-order.html

于 2011-12-02T21:24:28.803 に答える
0

「英数字」とは、次のような並べ替えを意味します。

01a
02a
02b
0a
1a
1b
a
b
c
...

OrderBYLINQの方法を使用できます。

IEnumerable<T> myObjects = myObjects.OrderBy(x => x.SomeProperty);

PO入力に基づく編集:

残念ながら、それはあなたが望むように単純に機能するわけではありません(100F 50F SR100 SR9に行きます50F 100F SR9 SR100)。ただし、オーバーロードを使用してOrderBy、必要なを実装することもできますIComparer

于 2011-12-02T21:22:27.487 に答える