鱼C论坛

 找回密码
 立即注册
查看: 7305|回复: 14

[扩展阅读] 各种各这样的排序算法:希尔排序(*)

[复制链接]
发表于 2016-12-7 23:01:21 | 显示全部楼层 |阅读模式
购买主题 已有 12 人购买  本主题需向作者支付 10 鱼币 才能浏览
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-3-9 16:13:56 | 显示全部楼层
为什么排序算法看的人这么少
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-3-9 16:14:02 | 显示全部楼层
本帖最后由 超凡天赐 于 2017-3-9 16:19 编辑

为什么排序算法看的人这么少
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-12-20 17:03:00 | 显示全部楼层
超凡天赐 发表于 2017-3-9 16:14
为什么排序算法看的人这么少

步伐不一样
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-5-17 13:27:38 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-12 22:48:03 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-27 22:02:26 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-28 09:06:22 | 显示全部楼层
#include <stdio.h>

void shell_sort(int array[], int length);

void shell_sort(int array[], int length)
{
        int i, j, step, temp;

        for (step = length / 2; step > 0; step /= 2)
        {
                for (i = step; i < length; i++)
                {
                        temp = array[i];
                        for (j = i - step; j >= 0 && array[j] > temp; j -= step)
                        {
                                array[j+step] = array[j];
                        }
                        array[j+step] = temp;
                }
        }
}

int main(void)
{
        int array[] = {73, 108, 111, 118, 101, 70, 105, 115, 104, 67, 46, 99, 111, 109};
        int i, length;

        length = sizeof(array) / sizeof(array[0]);
        shell_sort(array, length);

        printf("排序后的结果是:");
        for (i = 0; i < length; i++)
        {
                printf("%d ", array[i]);
        }
        putchar('\n');

        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-28 09:23:22 | 显示全部楼层
#include<stdio.h>
void shell(int a[],int len)
{
        int i,j,tem,step;
        for(step = len/2; step > 0; step /= 2)
        {
                for(i = step;i < len;i++)
                {
                        tem = a[i];
                        for(j = i - step;j >= 0 && a[j] > tem;j -= step)
                        {
                                a[j + step] = a[j];
                        }
                        a[j + step] = tem;
                }
        }
        
} 
int main(void)
{
        int i,len;
        int array[] = {73, 108, 111, 118, 101, 70, 105, 115, 104, 67, 46, 99, 111, 109};
        len = sizeof(array)/sizeof(array[0]);
        printf("希尔排序前的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        shell(array,len);
        printf("希尔排序后的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-9-4 11:05:25 | 显示全部楼层
#include<stdio.h>
void shell(int a[],int len)
{
        int i,j,tem,step;
        for(step = len/2; step > 0; step /= 2)
        {
                for(i = step;i < len;i++)
                {
                        tem = a[i];
                        for(j = i - step;j >= 0 && a[j] > tem;j -= step)
                        {
                                a[j + step] = a[j];
                        }
                        a[j + step] = tem;
                }
        }
        
}
int main(void)
{
        int i,len;
        int array[] = {73, 108, 111, 118, 101, 70, 105, 115, 104, 67, 46, 99, 111, 109};
        len = sizeof(array)/sizeof(array[0]);
        printf("希尔排序前的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        shell(array,len);
        printf("希尔排序后的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-9-4 11:06:59 | 显示全部楼层
#include<stdio.h>
void shell(int a[],int len)
{
        int i,j,tem,step;
        for(step = len/2; step > 0; step /= 2)
        {
                for(i = step;i < len;i++)
                {
                        tem = a[i];
                        for(j = i - step;j >= 0 && a[j] > tem;j -= step)
                        {
                                a[j + step] = a[j];
                        }
                        a[j + step] = tem;
                }
        }
        
} 
int main(void)
{
        int i,len;
        int array[] = {73, 108, 111, 118, 101, 70, 105, 115, 104, 67, 46, 99, 111, 109};
        len = sizeof(array)/sizeof(array[0]);
        printf("希尔排序前的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        shell(array,len);
        printf("希尔排序后的数组:");
        for(i = 0;i < len;i++)
        {
                printf("%d ",array[i]);
        }
        putchar('\n');
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-12-31 08:38:36 | 显示全部楼层

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-5-3 18:18:12 | 显示全部楼层
好好学习才能天天向上!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-7-28 11:27:35 | 显示全部楼层
自己要实现是真的费劲
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-9-1 21:31:35 | 显示全部楼层
很多人觉得nan
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-21 19:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表