2012-03-10から1日間の記事一覧

C# シェーカーソート

using System; using System.Collections.Generic; public static class Program { public static void ShakerSort<T>(T[] arr, Comparison<T> comparison) { Int32 i, k, head, tail; T hold; head = 0; tail = arr.Length - 1; k = head; while (head < tail) { </t></t>…