-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSort.cs
33 lines (32 loc) · 1.15 KB
/
Sort.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Text;
namespace AsoSoftLibrary
{
public static partial class AsoSoft
{
/// <summary>Sorting a string list in correct order of Kurdish alphabet.</summary>
public static List<string> KurdishSort(List<string> inputList)
{
var ku = new List<char>();
ku.AddRange("ئءاآأإبپتثجچحخدڎڊذرڕزژسشصضطظعغفڤقكکگڴلڵمنوۆۊۉۋهھەیێ");
return CustomSort(inputList, ku);
}
/// <summary>Sorting a string list in custom order.</summary>
public static List<string> CustomSort(List<string> inputList, List<char> inputOrder)
{
var baseChar = 62000;// 9472;
var order = new List<char>();
for (int i = 0; i < inputOrder.Count; i++)
order.Add((char)(baseChar + i));
for (int i = 0; i < inputList.Count; i++)
for (int j = 0; j < order.Count; j++)
inputList[i] = inputList[i].Replace(inputOrder[j], order[j]);
inputList.Sort();
for (int i = 0; i < inputList.Count; i++)
for (int j = 0; j < order.Count; j++)
inputList[i] = inputList[i].Replace(order[j], inputOrder[j]);
return inputList;
}
}
}