希尔排序

感情迁移 提交于 2019-12-05 10:54:14

 

#include <iostream>
#include <stdio.h>

using namespace std;

int g_szArray[] = { 7, 3, 5, 8, 9, 1, 2, 4, 6 };

void main()
{
    int nLen = sizeof(g_szArray) / sizeof(g_szArray[0]);
    int nStep = nLen / 2;
    while (nStep >= 1)
    {
        for (int i = 0; i < nLen; i++)
        {
            if (i + nStep > nLen - 1)
            {
                break;
            }

            if (g_szArray[i] > g_szArray[i + nStep])
            {
                g_szArray[i] = g_szArray[i] + g_szArray[i + nStep];
                g_szArray[i + nStep] = g_szArray[i] - g_szArray[i + nStep];
                g_szArray[i] = g_szArray[i] - g_szArray[i + nStep];
            }
        }

        nStep = nStep / 2;
    }

    for (int i = 0; i < nLen; i++)
    {
        printf("%d ", g_szArray[i]);
    }
    printf("\n");
    system("pause");
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!