• 循环排列c#

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace ConsoleApplication2 { class Program { public static void Main() { int[] a = {17,38,65,97,76,13,27};; CycleSort(a); Console.WriteLine(string.Join(",", a)); }

    0
    68
    12KB
    2014-07-28
    0
  • 冒泡排序c#

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication16 { class Program {

    0
    138
    14KB
    2014-07-23
    0
  • 归并排序有实例

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication16 { class Program {

    0
    36
    15KB
    2014-07-23
    3
  • 鸽巢排序用c#

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication16 { class Program {

    0
    63
    14KB
    2014-07-23
    3
  • 侏儒排序 用c#

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication16 { class Program {

    0
    72
    14KB
    2014-07-23
    0
  • 堆排序用c#

    namespace ConsoleApplication17 { class Program { static void Main(string[] args) { int[] a = { 22, 33, 4, 7, 0, 88, 78 }; minheapsort(a); Console.WriteLine(string.Join(",",a)); } private static int [] minheapsort(int[] a) { bulidminheap(a); int temp1; for (int i=a.Length-1;i>0; i--) { temp1= a[0]; a[0] = a[i]; a[i] = temp1;

    0
    106
    15KB
    2014-07-23
    13
上传资源赚积分or赚钱