VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Thirteen Sorting Methods (Sorting V2.0)

by Guillaume Couture-Levesque (3 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Advanced
Date Added: Wed 3rd February 2021
Rating: (2 Votes)

This code is a newer revision of my ten sorts program. The added sorts are the following: Bucket Sort, Binary Insertion Sort, and Quick Sort with Bubble Sort. Each of the algorithms has it's own special advantages and disadvantages. New added features are generating lists that are random, sorted, or in reverse order. These lists can be generated in either 10 items, 500 items, 5000 items, or a custom list size! You can now also time how long the sort takes now! New sorts will be added as I discover them. Please leave feedback for more features!

Inputs
Some sorts need just the unsorted array and the number of items in the array, however, some sorts need also need a temporary array that is the same size as the unsorted array.
Assumes
The bucket sort only works if there is no number less than 0 in the list, and there is no number in the list that is bigger than the number of items in the list. It is a very specific sort. There are also two unfinished and partially working sorts in the source. The bitonic sort, and the bottom-up merge sort, they will be finished soon, feel free to try and fix them yourselves!
Code Returns
Returns the sorted list!
Side Effects
None that I'm aware of!

Rate Thirteen Sorting Methods (Sorting V2.0)

Download Thirteen Sorting Methods (Sorting V2.0)

Download Thirteen Sorting Methods (Sorting V2.0) (9 KB)

Thirteen Sorting Methods (Sorting V2.0) Comments

No comments have been posted about Thirteen Sorting Methods (Sorting V2.0). Why not be the first to post a comment about Thirteen Sorting Methods (Sorting V2.0).

Post your comment

Subject:
Message:
0/1000 characters