私は基数ソートを理解しようとしています。特に、基数関数、より具体的には、jループとkループを理解することができません。私は正確に何が起きているのか分かりません。私が見ることから、jループはソートされた出力配列を形成するためにkループのインデックスを設定しているようです。誰かがそれの背後にある論理を説明するのを助けることができれば、それは素晴らしいだろう!基数ソートを説明する
// RADIX SORT BEGIN //
// Get the maximum value in arr[]
int getMax(int arr[], int size)
{
int max = arr[0]; // Set max to presumably the first one
int i = 1;
while (i < size)
{
if (arr[i] > max) // We have a new max ladies and gents
max = arr[i];
i++;
}
return max;
}
// Do a sort of arr[] based off the digit represented by exp
void radixing(int arr[], int size, int exponent)
{
int output[size];
int count[10] = {0};
// Tally the amount of numbers whose LSB based off current exponent
// is 0-9, represented by each
// index in the array
for (int i = 0; i < size; i++)
count[ (arr[i]/exponent) % 10 ]++;
for (int j = 1; j < 10; j++)
count[ j ] += count [j - 1];
for (int k = size - 1; k >= 0; k--)
{
output[ count[ (arr[k]/exponent) % 10 ] -1 ] = arr[k];
count[ (arr[k]/exponent) % 10 ]--;
}
// Finalize output into the original array
for (int o = 0; o < size; o++)
arr[o] = output[o];
}
// Main radix sort function
void radixsort(int arr[], int size)
{
// Find the max in the array to know the number of digits to traverse
int max = getMax(arr, size);
// Begin radixing by sorting the arr[] based off every digit until max
// Exponent is 10^i where i starts at 0, the current digit number
for (int exponent = 1; (max/exponent) > 0; exponent = exponent * 10)
radixing(arr, size, exponent);
}
// RADIX SORT END //
あなたは「基数ソート」でグーグルをしましたか? Wikipediaの記事、YouTubeの動画、CS講義の資料など、数千の結果しかありません。 –
@JonathonReinhart Wikipediaは信頼できません。 – nicomp
@nicompスタックオーバーフローに関するいくつかのschmuckからの答えは? –