https://github.com/samyam81/sorting_mechanism
This repository contains various sorting algorithms implemented in different programming languages.
https://github.com/samyam81/sorting_mechanism
cpp csharp java sorting-algorithms
Last synced: about 1 year ago
JSON representation
This repository contains various sorting algorithms implemented in different programming languages.
- Host: GitHub
- URL: https://github.com/samyam81/sorting_mechanism
- Owner: samyam81
- Created: 2024-01-21T06:45:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T08:07:07.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T09:14:30.915Z (about 1 year ago)
- Topics: cpp, csharp, java, sorting-algorithms
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sorting Mechanisms Repository
This repository contains various sorting algorithms implemented in different programming languages. Below are the details of each sorting mechanism along with their respective implementations.
## Bogo Sort (Java)
A highly inefficient sorting algorithm that generates random permutations of the input array until it is sorted.
## Insertion Sort (Java)
A simple sorting algorithm that builds the final sorted array one item at a time.
## Miracle Sort (Java)
An ironic sorting algorithm that does nothing and hopes the array is already sorted.
## Quick Sort (C++)
A sorting algorithm that uses the divide and conquer strategy by recursively partitioning the array.
## Remove Unsorted (Java)
A method to remove duplicates from an unsorted array using HashSet.
## Bubble Sort (C++)
A simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.
## Bubble Sort (C#)
A simple sorting algorithm implemented in C#.