C# - 문자열 배열 정렬 (오름차순, 내림차순)

문자열 배열을 오름차순, 내림차순으로 정렬하는 방법을 소개합니다.

정렬 과정에서, 알파벳의 경우 대소문자 구분 없이(Case insensitive) 정렬하거나, 대소문자를 구분하여(Case sensitive) 정렬하는 방법을 소개합니다.

1. Array.Sort()를 이용한 방법 (오름차순)

Array.Sort(arr)는 배열 arr을 정렬합니다.

  • 원본 배열의 순서가 변경
  • 대소문자를 구분하지 않고 정렬
  • 오름차순으로 정렬

아래와 같이 문자열 배열을 정렬할 수 있습니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "Melon", "kiwi", "apple", "peach" };

            Array.Sort(arr);
            Console.WriteLine(String.Join(", ", arr));
        }
    }
}

Output:

apple, kiwi, Melon, peach

1.1 대소문자 구분하여 정렬 (Case sensitive)

알파벳을 정렬할 때, 대문자가 소문자보다 순서가 앞에 있습니다.

Array.Sort() 함수에 두번째 인자로 StringComparer.Ordinal를 전달하면 대소문자를 구분하여 정렬합니다.

아래 예제에서는 Melon만 첫 문자가 대문자이기 때문에, 가장 앞에 정렬됩니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "Melon", "kiwi", "apple", "peach" };

            Array.Sort(arr, StringComparer.Ordinal);
            Console.WriteLine(String.Join(", ", arr));
        }
    }
}

Output:

Melon, apple, kiwi, peach

2. Array.Sort()를 이용한 방법 (내림차순)

Array.Sort()는 오름차순으로 정렬하며, Array.Reverse()으로 순서를 역순으로 변경하면 내림차순으로 정렬된 것과 같습니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "melon", "kiwi", "apple", "peach" };

            Array.Sort(arr);
            Array.Reverse(arr);
            Console.WriteLine(String.Join(", ", arr));
        }
    }
}

Output:

peach, melon, kiwi, apple

2.1 Comparison을 이용한 방법

Array.Sort()Comparison을 인자로 전달할 수 있는데, Comparison은 어떻게 정렬할 것인지에 대한 내용입니다.

아래와 같이 Comparison으로 (s1, s2) => s2.CompareTo(s1)를 전달하면, 비교 순서를 변경하여 내림차순으로 정렬하게 됩니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "melon", "kiwi", "apple", "peach" };

            Array.Sort(arr,
                    new Comparison<string>((s1, s2) => s2.CompareTo(s1)));
            Console.WriteLine(String.Join(", ", arr));
        }
    }
}

Output:

peach, melon, kiwi, apple

3. array.OrderBy()를 이용한 방법 (오름차순)

array.OrderBy()는 인자로 전달된 배열을 정렬하여 Enumerable로 리턴합니다.

  • 원본 배열은 변경되지 않고, 정렬된 내용을 Enumerable로 리턴
  • 대소문자를 구분하지 않고 정렬
  • 오름차순으로 정렬
  • 어떤 key를 사용하여 정렬할 것인지 함수 인자로 전달

아래와 같이 OrderBy()로 정렬된 내용이 Enumerable로 리턴되며, ToArray()로 배열로 변환할 수 있습니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "Melon", "kiwi", "apple", "peach" };

            string[] sorted = arr.OrderBy(s => s).ToArray();
            Console.WriteLine(String.Join(", ", sorted));
        }
    }
}

Output:

apple, kiwi, Melon, peach

3.1 대소문자 구분하여 정렬 (Case sensitive)

OrderBy()는 기본적으로 대소문자를 구분하지 않고 정렬합니다.

만약 대소문자 구분하여 정렬하고 싶을 때는 OrderBy()의 두번째 인자로 StringComparer.Ordinal를 전달하면 됩니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "Melon", "kiwi", "apple", "peach" };

            string[] sorted = arr.OrderBy(s => s, StringComparer.Ordinal).ToArray();
            Console.WriteLine(String.Join(", ", sorted));
        }
    }
}

Output:

Melon, apple, kiwi, peach

4. array.OrderBy()를 이용한 방법 (내림차순)

OrderBy()는 배열의 요소들을 오름차순으로 정렬하고, OrderByDescending()는 내림차순으로 정렬합니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string[] arr = { "Melon", "kiwi", "apple", "peach" };

            string[] sorted = arr.OrderByDescending(s => s).ToArray();
            Console.WriteLine(String.Join(", ", sorted));
        }
    }
}

Output:

peach, Melon, kiwi, apple
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha