5

Generic bubble sort in C# .NET

 2 years ago
source link: https://swimburger.net/blog/dotnet/generic-bubble-sort-in-csharp-dotnet
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Generic Bubble Sort in C# .NET

Niels Swimberghe

Niels Swimberghe - 8/1/2021 - .NET

Follow me on Twitter, buy me a coffee

Early this year, I decided to brush up on my algorithms and data structure knowledge. I took these great two courses (1, 2) on PluralSight by Robert Horvick.
To practice what I learned in this course, I decided to create generic versions of the different algorithms and data structures.

What do I mean by generic versions? These types of courses always use integers or strings to demonstrate the algorithms. Instead of using those primitive data types, I'm reimplementing the algorithms and data structures using C#'s generic type parameters.

Here's a console application with a generic method BubbleSort to perform a bubble sort on an enumerable:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var randomNumbers = new int[] { 5, 4, 5, 7, 6, 9, 4, 1, 1, 3, 4, 50, 56, 41 };
        var sortedNumbers = BubbleSort(randomNumbers);
        PrintList(sortedNumbers);
        Console.ReadKey();
    }

    private static IEnumerable<T> BubbleSort<T>(IEnumerable<T> list) where T : IComparable
    {
        T[] sortedList = list.ToArray();
        int listLength = sortedList.Length;
        while (true)
        {
            bool performedSwap = false;
            for (int currentItemIndex = 1; currentItemIndex < listLength; currentItemIndex++)
            {
                int previousItemIndex = currentItemIndex - 1;
                T previousItem = sortedList[previousItemIndex];
                T currentItem = sortedList[currentItemIndex];
                var comparison = previousItem.CompareTo(currentItem);
                if (comparison > 0)
                {
                    sortedList[previousItemIndex] = currentItem;
                    sortedList[currentItemIndex] = previousItem;
                    performedSwap = true;
                }
            }

            if (!performedSwap)
            {
                break;
            }
        }

        return sortedList;
    }

    private static void PrintList<T>(IEnumerable<T> list)
    {
        foreach (var item in list)
        {
            Console.WriteLine(item);
        }
    }
}

By using a generic type parameter with the constraint that the type has to implement the IComparable interface, you can perform the bubble sort algorithm without knowing the exact type you are working with.

If you want to understand the logic behind the bubble sort algorithm, I recommend checking out the courses mentioned earlier. There's also a lot of other great resources out there online!

Disclaimer: This code works, but is only developed for the sake of practice. Use at your own risk or just use a sorting library. If you see some room for improvement, there most likely is, I'm all ears~

Topics
Author
Niels Swimberghe

Niels Swimberghe

Niels Swimberghe is a Belgian Full Stack Developer solving problems and delivering value to customers using .NET technologies for back-end systems, and modern JavaScript technologies for the front-end.

Found this article useful? Follow me on Twitter, buy me a coffee, add this blog to your feed reader!


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK