algorithmica icon indicating copy to clipboard operation
algorithmica copied to clipboard

A computer science textbook

Results 195 algorithmica issues
Sort by recently updated
recently updated
newest added

This pull request has been automatically generated by prose.io.

This pull request has been automatically generated by prose.io.

The binary search section has the following > I also stole these lovely layout visualizations from some blog a long time ago, but I don’t remember the name of the...

```assembly mov rax, -100 ; replace 100 with the array size loop: add edx, DWORD PTR [rax + 100 + rcx] add rax, 4 jnz loop ; checks if the...

When I run the eytzinger() function in that section, it produces the following layout in array t (given 0-9 in array a): 6 3 8 1 5 7 9 0...

This pull request has been automatically generated by prose.io.

I think there is a small mistake in the address mapping formula explanation for set-associative caches.

The speed of light is 3x10^8 m/s, not 3x10^9 m/s.

In the following line: https://github.com/algorithmica-org/algorithmica/blob/ed1945c3d2de8548b1c744d3161eb668703db808/content/english/hpc/arithmetic/float.md?plain=1#L41 Instead of: ``` r operator/(r a, r b) { return {a.x * b.x, a.y * b.y}; } ``` I think this is showing the division...