https://github.com/nomemory/blog-stein-algorithm-c
An "academic" implementation in C for the stein algorithm
https://github.com/nomemory/blog-stein-algorithm-c
Last synced: 15 days ago
JSON representation
An "academic" implementation in C for the stein algorithm
- Host: GitHub
- URL: https://github.com/nomemory/blog-stein-algorithm-c
- Owner: nomemory
- Created: 2021-01-02T21:59:25.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-02T22:08:06.000Z (over 5 years ago)
- Last Synced: 2025-10-24T20:47:29.305Z (9 months ago)
- Language: C
- Size: 1000 Bytes
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
"Academic" implementation of the [Stein's Algorithm (Binary GCD)](https://en.wikipedia.org/wiki/Binary_GCD_algorithm?oldformat=true) in `C`
# Usage:
```shell
gcc b_gcd_iterative.c
./a.out
```
or
```shell
gcc b_gcd_recursive.c
./a.out
```