Skip to content
View wstaffordp's full-sized avatar
Getting a job is hard, I'm making a faster sorting algorithm to get noticed.
Getting a job is hard, I'm making a faster sorting algorithm to get noticed.

Block or report wstaffordp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
wstaffordp/README.md

I'm a software performance specialist.

I'm building a set of fundamental algorithms and data structures that have optimal performance within each classification.

PRNG

A | 8 | 16 | 32 | 64 | Extremely-fast, small-period, statistically-weak PRNGs.

B | 8 | 16 | 16-32 | 32 | 64 | Fast, small-period, statistically-strong PRNGs.

C | 8 | 16 | 32 | 64 | Fast, medium-period, statistically-strong PRNGs.

D | 8 | 16 | 32 | 64 | Fast, large-period, statistically-strong PRNGs.

E | 8 | 16 | 32 | 64 | Fast, huge-period, statistically-strong PRNGs.

F | 32 | 64 | Extremely-fast, large-period, statistically-strong PRNGs that emulate quantum RNGs.

Search

A | Sorted | Unsorted | Fast, non-interpolated searching algorithms that emulate quantum searching algorithms.

Sort

A | Stable | Unstable | Fast, in-place, non-auxiliary sorting algorithms that emulate quantum sorting algorithms.

B | In Progress | Fast, in-place, semi-auxiliary sorting algorithms that emulate quantum sorting algorithms.

Pinned Loading

  1. prng-d-64 prng-d-64 Public

    A fast, statistically-strong PRNG with 64-bit integers and a minimum period of 2²⁵⁶.

    C 1

  2. prng-f-64 prng-f-64 Public

    An extremely-fast, statistically-strong PRNG with 64-bit integers and a minimum period of 2¹⁰²⁴.

    C 1

  3. search-a-sorted search-a-sorted Public

    A fast, non-interpolated sorted-list searching algorithm.

    C 1

  4. search-a-unsorted search-a-unsorted Public

    A fast, non-interpolated unsorted-list searching algorithm.

    C 1

  5. sort-a-stable sort-a-stable Public

    A fast, in-place, non-auxiliary, stable sorting algorithm.

    C 1

  6. sort-a-unstable sort-a-unstable Public

    A fast, in-place, non-auxiliary, unstable sorting algorithm.

    C 1