Horje
extended euclidean algorithm Code Example
extended euclidean python
def extendEuclidean(a, b, s1=1, s2=0, t1=0, t2=1):
    
    if b:
        r=a%b
        return extendEuclidean(b, r, s2, s1-s2*(a//b), t2, t1-t2*(a//b))
    
    return a, s1, t1
extended euclidean algorithm
int gcd(int a, int b, int& x, int& y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }
    int x1, y1;
    int d = gcd(b, a % b, x1, y1);
    x = y1;
    y = x1 - y1 * (a / b);
    return d;
}




Cpp

Related
cpp substring Code Example cpp substring Code Example
Implementation of Extended Euclidian theorem Code Example Implementation of Extended Euclidian theorem Code Example
c++ lettura file Code Example c++ lettura file Code Example
c++ pass char array by reference Code Example c++ pass char array by reference Code Example
stl function to reverse an array Code Example stl function to reverse an array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9