📜  排序算法-圆圈排序

📅  最后修改于: 2020-10-15 03:21:47             🧑  作者: Mango

循环排序

循环排序是一种比较排序算法,它强制将数组分解为循环数,每个循环都可以旋转以产生排序的数组。从某种意义上说,这是最佳的,因为它可以减少对原始数组的写入次数。

算法

考虑n个不同元素的数组。给定一个元素a,可以通过计算小于a的元素数量来计算a的索引。

  • 如果发现该元素在其正确位置,则只需保持原样。
  • 否则,用数小于一个元素的总数找到正确位置。它必须存在于已排序数组中的位置。被替换的另一个元素b将移动到其正确位置。这个过程一直持续,直到我们拿到原始位置的元素。

所示过程构成一个循环。对列表的每个元素重复此循环。结果列表将被排序。

C程序

#include
void sort(int a[], int n)
{
    int writes = 0,start,element,pos,temp,i;
 
    for (start = 0; start <= n - 2; start++) {
        element = a[start];
        pos = start;
        for (i = start + 1; i < n; i++)
            if (a[i] < element)
                pos++;
        if (pos == start)
            continue;
        while (element == a[pos])
            pos += 1;
        if (pos != start) {
            //swap(element, a[pos]);
        temp = element;
        element = a[pos];
            a[pos] = temp;  
            writes++;
        }
        while (pos != start) {
            pos = start;
            for (i = start + 1; i < n; i++)
                if (a[i] < element)
                    pos += 1;
            while (element == a[pos])
                pos += 1;
            if (element != a[pos]) {
              temp = element;
          element = a[pos];
              a[pos] = temp;  
                writes++;
            }
        }
    }
 
 }
 
int main()
{
    int a[] = {1, 9, 2, 4, 2, 10, 45, 3, 2};
    int n = sizeof(a) / sizeof(a[0]),i;
    sort(a, n);
    printf("After sort, array : ");
    for (i = 0; i < n; i++)
        printf("%d    ",a[i]);
    return 0;
}

输出:

After sort, array :
1
2
2
2
3
4
9
10
45

Java程序

public class CycleSort 
{
static void sort(int a[], int n)
{
    int writes = 0,start,element,pos,temp,i;
 
    for (start = 0; start <= n - 2; start++) {
        element = a[start];
        pos = start;
        for (i = start + 1; i < n; i++)
            if (a[i] < element)
                pos++;
        if (pos == start)
            continue;
        while (element == a[pos])
            pos += 1;
        if (pos != start) {
            //swap(element, a[pos]);
        temp = element;
        element = a[pos];
            a[pos] = temp;  
            writes++;
        }
        while (pos != start) {
            pos = start;
            for (i = start + 1; i < n; i++)
                if (a[i] < element)
                    pos += 1;
            while (element == a[pos])
                pos += 1;
            if (element != a[pos]) {
              temp = element;
          element = a[pos];
              a[pos] = temp;  
                writes++;
            }
        }
    }
}
public static void main(String[] args)
{
    int a[] = { 1, 9, 2, 4, 2, 10, 45, 3, 2 };
    int n = a.length,i;
    sort(a, n);
    System.out.println("After sort, array : ");
    for (i = 0; i < n; i++)
        System.out.println(a[i]);
    
}
}

输出:

After sort, array :
1
2
2
2
3
4
9
10
45

C#程序

using System;
public class CycleSort 
{
static void sort(int[] a, int n)
{
    int writes = 0,start,element,pos,temp,i;
 
    for (start = 0; start <= n - 2; start++) {
        element = a[start];
        pos = start;
        for (i = start + 1; i < n; i++)
            if (a[i] < element)
                pos++;
        if (pos == start)
            continue;
        while (element == a[pos])
            pos += 1;
        if (pos != start) {
            //swap(element, a[pos]);
        temp = element;
        element = a[pos];
            a[pos] = temp;  
            writes++;
        }
        while (pos != start) {
            pos = start;
            for (i = start + 1; i < n; i++)
                if (a[i] < element)
                    pos += 1;
            while (element == a[pos])
                pos += 1;
            if (element != a[pos]) {
              temp = element;
          element = a[pos];
              a[pos] = temp;  
                writes++;
            }
        }
    }
}
public void Main()
{
    int[] a = { 1, 9, 2, 4, 2, 10, 45, 3, 2  };
    int n = a.Length,i;
    sort(a, n);
    Console.WriteLine("After sort, array : ");
    for (i = 0; i < n; i++)
        Console.WriteLine(a[i]);
    
}
}

输出:

After sort, array :
1
2
2
2
3
4
9
10
45