Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/Van-der-Corput-sequence/D/van-der-corput-sequence.d
Normal file
16
Task/Van-der-Corput-sequence/D/van-der-corput-sequence.d
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
double vdc(int n, in double base=2.0) pure nothrow @safe @nogc {
|
||||
double vdc = 0.0, denom = 1.0;
|
||||
while (n) {
|
||||
denom *= base;
|
||||
vdc += (n % base) / denom;
|
||||
n /= base;
|
||||
}
|
||||
return vdc;
|
||||
}
|
||||
|
||||
void main() {
|
||||
import std.stdio, std.algorithm, std.range;
|
||||
|
||||
foreach (immutable b; 2 .. 6)
|
||||
writeln("\nBase ", b, ": ", 10.iota.map!(n => vdc(n, b)));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue