Skip to main content

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.

5 votes
1 answer
216 views

Intro This time, I present the ObjectBucketSort, a stable sorting algorithm for objects. Code ...
coderodde's user avatar
  • 33.1k
7 votes
3 answers
990 views

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.) ...
coderodde's user avatar
  • 33.1k
6 votes
1 answer
662 views

Intro This time I have implemented the Batcher's sort. Code io.github.coderodde.util.BatchersSort.java: ...
coderodde's user avatar
  • 33.1k