Questions tagged [array]
An array is an ordered data structure consisting of a collection of elements (values or variables), each identified by one (single dimensional array, or vector) or multiple indexes.
3 questions from the last 30 days
7
votes
3
answers
990
views
Batcher's sort in C++20
Intro
This is the very first time I actually expose myself to C++20 (concepts in this case). I decided to rewrite the Batcher's sort.
(This post has a continuation: Batcher's sort in C++20 - Take II.)
...
6
votes
1
answer
662
views
Batcher's sort in Java: a θ(N log N log N) sorting algorithm
Intro
This time I have implemented the Batcher's sort.
Code
io.github.coderodde.util.BatchersSort.java:
...
5
votes
1
answer
216
views
ObjectBucketSort.java with running time statistics
Intro
This time, I present the ObjectBucketSort, a stable sorting algorithm for objects.
Code
...