Sort Algorithm Part-2 Insertion Sort

Sort Algorithm

Part -2

Insertion Sort

 


Table of Contents. 2

1. Definition. 3

2. Implements in ANSI C. 3

2.1 List of c files. 3

2.2 Source code. 3

2.2.1 main.c 3

2.2.2 def.h. 3

2.2.3 sort.h. 3

2.2.4 sort.c 3

3. Implements in C#. 4

3.1 List of c# files. 4

3.2 Source code. 4

3.2.1 main.cs. 4

3.2.2 sorter.cs. 5

 


A sorting algorithm that inserts each item in the proper place into an initially empty list by comparing it with each item in the list until it finds the new element's successor or the end of the list.

 

 

2.1 List of c files

1. main.c

2. def.h

3. sort.h

4. sort.c

 

2.2 Source code

2.2.1 main.c

#include <stdio.h>

#include <string.h>

#include "sort.h"

 

int main(int argc, char **argv) {

    Item item[] = {"ASORTINGEXAMPLE"};

 

    i_sort(item, 0, strlen(item));

 

    return 0;

}

 

2.2.2 def.h

typedef char Item, *PItem;

 

#define less(a, b)  ((a) < (b))

#define exch(a, b)  {Item tmp; tmp = (a); (a) = (b); (b) = tmp;}

#define compexch(a, b)  {if (less((a), (b))) exch((a), (b))}

 

2.2.3 sort.h

#include "def.h"

 

void i_sort(Item*, int, int);

 

 

2.2.4 sort.c

#include "sort.h"

 

void i_sort(Item*, int, int);

 

void i_sort(Item item[], int l, int r) {

    int i;

 

    for (i = r - 1; i > l; i--)

        compexch(item[i], item[i - 1]);

 

    for (i = l + 2; i < r; i++) {

        int j = i;

        Item c = item[i];

 

        while (less(c, item[j - 1])) {

            item[j] = item[j - 1];

            j--;

        }

 

        if (j < i)

            item[j] = c;

    }

}

 

3.1 List of c# files

1. main.cs

2. sorter.cs

3.2 Source code

3.2.1 main.cs

using System;

using System.Collections;

 

namespace AlgorithmPractice {

    /// <summary>

    /// Summary description for TestClass.

    /// </summary>

    class TestClass {

        /// <summary>

        /// The main entry point for the application.

        /// </summary>

        [STAThread]

        static void Main (string[] args) {

            char[] charItem = {'A', 'S', 'O', 'R', 'T',

                                  'I', 'N', 'G', 'E', 'X',

                                  'A', 'M', 'P', 'L', 'E'};

 

            int[] intItem = new int[]{1, 5, 3, 6, 10,

                                         55, 9, 2, 87, 12,

                                         34, 75, 33, 47, 1};

 

            Sorter.InsertionSort(charItem, null, 0, charItem.Length);

            Sorter.InsertionSort(intItem, null, 0, intItem.Length);

 

            System.Diagnostics.Debug.WriteLine(new string(charItem));

        }

    }

}

 

3.2.2 sorter.cs

using System;

using System.Collections;

 

namespace AlgorithmPractice {

    /// <summary>

    /// Summary description for Sorter.

    /// </summary>

    public class Sorter {

        private Sorter(){}

 

        public static void InsertionSort(

            IList item, IComparer comparer,

            int l, int r) {

 

            if (null == comparer)

                comparer = Comparer.Default;

 

            for (int i = r - 1; i > l; i--)

                if (comparer.Compare(item[i], item[i - 1]) < 0) {

                    object tmp = item[i];

                    item[i] = item[i - 1];

                    item[i - 1] = tmp;

                }

 

            for (int i = l + 2; i < r; i++) {

                object c = item[i];

                int j = i;

 

                while (comparer.Compare(c, item[j - 1]) < 0) {

                    item[j] = item[j - 1];

                    j--;

                }

 

                if (j < i)

                    item[j] = c;

            }

        }

    }

}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值