Program- Perform a radix sort, using a decimal basis (that is sorting into 10 buckets, ordered 0 to 9) on the given list:
0162 1776 2001 5162 9876 9412 6191 1234
A radix sort requires 4 stages (equal to the maximum number of digits ). Illustrate the output of each stage as a list. Is there anybody who knows how to do this?