Final answer:
The properties of radix sort include O(n) time complexity, being a comparison sort, and not being an in-place algorithm.
Step-by-step explanation:
The properties of radix sort are:
- Runs in O(n) time
- Comparison sort
- Not in-place algorithm
Radix sort is a non-comparison sorting algorithm that operates by distributing elements into buckets based on their digits or characters. It runs in linear time, making it faster than O(n log n) comparison-based sorting algorithms. However, it requires additional space to store the buckets, hence it is not an in-place algorithm.