Pagini recente » Cod sursa (job #1136672) | Cod sursa (job #963127) | Cod sursa (job #1131559) | Cod sursa (job #2814704) | Cod sursa (job #2814381)
#include <bits/stdc++.h>
using namespace std;
void radixSort(unsigned int* v, const int& N){
const int INT_BITS = 32;
const int BUCKET_BITS = 8;
const int BUCKET_SIZE = (1 << BUCKET_BITS);
deque<unsigned int> buckets[BUCKET_SIZE];
for(int shiftBits = 0; shiftBits < INT_BITS; shiftBits += BUCKET_BITS){
for(int i = 0; i < N; ++i){
int bucketIdx = (v[i] >> shiftBits) & (BUCKET_SIZE - 1);
buckets[bucketIdx].push_back(v[i]);
}
int i = -1;
for(int bucketIdx = 0; bucketIdx < BUCKET_SIZE; ++bucketIdx){
while(!buckets[bucketIdx].empty()){
v[++i] = buckets[bucketIdx].front();
buckets[bucketIdx].pop_front();
}
}
}
}
int main(){
ifstream cin("radixsort.in");
ofstream cout("radixsort.out");
int N;
cin >> N;
unsigned int A, B, C;
cin >> A >> B >> C;
unsigned int v[N];
v[0] = B;
for(int i = 1; i < N; ++i){
v[i] = (A * 1LL * v[i - 1] + B) % C;
}
radixSort(v, N);
for(int i = 0; i < N; i += 10){
cout << v[i] << " ";
}
cin.close();
cout.close();
return 0;
}