diff options
author | Anthony Wang | 2022-04-18 20:06:49 -0500 |
---|---|---|
committer | Anthony Wang | 2022-04-18 20:06:49 -0500 |
commit | b0568c843e729adbea9606184c5247de0f7d41b4 (patch) | |
tree | ff60b829d79cf476207a859f058c0e803642fbca | |
parent | aa1f53c83e4fbccde7f21555a9e5230a8652309a (diff) |
Add link to CD in the README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,4 +14,4 @@ If you're wondering where the name came from, I named this app after a common ty SD is designed to be extremely efficient in order to support a very large number of flash cards and should be able to handle millions of cards with ease. If `N` is the number of cards, initializing the program requires `O(N)` time and `O(N)` memory. Selecting a random card and adjusting its weight requires `O(log N)` time. Internally SD uses [segment trees](https://en.wikipedia.org/wiki/Segment_tree) to achieve this time complexity. -A C port for maximal speed and minimal executable size is planned but will probably never happen. +A C port for maximal speed and minimal executable size can be found [here](https://git.exozy.me/Ta180m/CD). |