• 折半插入排序


    using System;
    using System.Collections;
    using System.Runtime.CompilerServices;

    namespace HelloWorldApplication
    {
        
        struct KeyType
        {
            public int key;
        };
        struct SqList
        {
            public KeyType[] r;
            public int length;
        };

        class HelloWorld
        {
            static int maxSize = 100;
            private static void BInsertSort(SqList l)
            {
                KeyType temp;
                Console.WriteLine("排序前:l.key:{0}, l.length:{1}", StrSqList(l), l.length);
                for (int i = 1; i < l.length; i++)
                {
                    temp = l.r[i];
                    int low = 0;
                    int high =  i - 1;
                    while (low <= high)
                    {
                        int m = (low + high) / 2;
                        if (temp.key < l.r[m].key)
                        {
                            high--;
                        } else
                        {
                            low++;
                        }
                    }
                    for (int j = i - 1; j >= high + 1; j--)
                    {
                        l.r[j + 1].key = l.r[j].key;
                    }
                    l.r[high + 1].key = temp.key;
                    // Console.WriteLine("排序中:l.key:{0}, l.length:{1}", StrSqList(l), l.length);
                }
                Console.WriteLine("排序后:l.key:{0}, l.length:{1}", StrSqList(l), l.length);
            }
            private static string StrSqList(SqList l)
            {
                int []a = new int[l.length];
                for(int i=0; i < l.length; i++)
                {
                    a[i] = l.r[i].key;
                }
                return string.Join(",", a);
            }
            static void Main(string[] args)
            {
                /* 我的第一个 C# 程序*/
                // 初始化线性表
                SqList l;
                l.r = new KeyType[maxSize];
                int []r = new int[]{49,38,65,97,76,13,27,49 };
                KeyType key;
                for(int i = 0; i < r.Length; i++)
                {
                    key.key = r[i];
                    l.r[i] = key;
                }
                l.length = r.Length;
               
                // 调用排序算法
                BInsertSort(l);
                
                Console.ReadKey();
            }
        }
    }

  • 相关阅读:
    C++15 ---继承2:重载与覆盖、隐藏、拷贝构造函数、赋值运算符重载、静态数据成员
    HEVC(H.265)与AVC(H.264)的区别与联系
    一个方法中两个参数列表和整数,列表相邻相差绝对值与比较输入false和true
    5分钟快速搭建k8s集群1.29.x
    在Mac上安装MongoDB 5.0
    DSP开发例程(4): logbuf_print_to_uart
    物联网浏览器(IoTBrowser)-Java快速对接施耐德网络IO网关
    基于Java的勤工助学管理系统设计与实现(源码+lw+部署文档+讲解等)
    智能油井在线监控解决方案,第一时间掌握所有动态
    CUDA 安装
  • 原文地址:https://blog.csdn.net/pzqingchong/article/details/134483232