algorithm-archive
algorithm-archive copied to clipboard
A collaborative book on algorithms
This is an algorithm I came up with so it needs to be checked.
code example for queue and stack implementation in python [x] following rule [x] Only implement algorithms that are already in the AAA [x] only one language and one algorithm [x]...
Added a stack class example in js & added imported the code into the md file.
Flood fill in JS again, this time using Node.js and closer to the already existing Julia/C implementations. Adapted from my previous PR which used p5.js: #748 ~Delphi1024
FFT implementation in Scala. The code (hopefully) follows this style guide: https://docs.scala-lang.org/style/index.html A runnable version of the code is on Repl.it: https://repl.it/@Delphi1024/FFT-Algorithm-Archive#main.scala ~Delphi1024
This uses the points from https://github.com/algorithm-archivists/algorithm-archive/blob/4313e7eb3d2faa152590c631d180d06a5c85f46d/contents/graham_scan/code/julia/graham.jl#L50 It revealed a bug in this implementation that needs to be fixed.