v/vlib/math/fractions/fraction.v

108 lines
2.4 KiB
V
Raw Normal View History

2020-02-03 05:00:36 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-07-03 12:12:36 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-07-15 21:16:41 +02:00
module fractions
import math
2019-07-03 12:12:36 +02:00
// Fraction Struct
struct Fraction {
n i64
d i64
2019-07-03 12:12:36 +02:00
}
// A factory function for creating a Fraction, adds a boundary condition
pub fn fraction(n i64, d i64) Fraction{
2019-07-03 12:12:36 +02:00
if d != 0 {
return Fraction{n, d}
2019-07-03 12:12:36 +02:00
}
else {
panic('Denominator cannot be zero')
}
}
// To String method
pub fn (f Fraction) str() string {
return '$f.n/$f.d'
}
// Fraction add using operator overloading
pub fn (f1 Fraction) + (f2 Fraction) Fraction {
if f1.d == f2.d {
return Fraction{f1.n + f2.n, f1.d}
2019-07-03 12:12:36 +02:00
}
else {
return Fraction{(f1.n * f2.d) + (f2.n * f1.d), f1.d * f2.d}
2019-07-03 12:12:36 +02:00
}
}
2019-07-12 20:45:56 +02:00
// Fraction subtract using operator overloading
2019-07-03 12:12:36 +02:00
pub fn (f1 Fraction) - (f2 Fraction) Fraction {
if f1.d == f2.d {
return Fraction{f1.n - f2.n, f1.d}
2019-07-03 12:12:36 +02:00
}
else {
return Fraction{(f1.n * f2.d) - (f2.n * f1.d), f1.d * f2.d}
2019-07-03 12:12:36 +02:00
}
}
// Fraction multiply using operator overloading
// pub fn (f1 Fraction) * (f2 Fraction) Fraction {
// return Fraction{f1.n * f2.n,f1.d * f2.d}
// }
// Fraction divide using operator overloading
// pub fn (f1 Fraction) / (f2 Fraction) Fraction {
// return Fraction{f1.n * f2.d,f1.d * f2.n}
// }
// Fraction add method
pub fn (f1 Fraction) add(f2 Fraction) Fraction {
return f1 + f2
}
// Fraction subtract method
pub fn (f1 Fraction) subtract(f2 Fraction) Fraction {
2019-07-03 12:12:36 +02:00
return f1 - f2
}
// Fraction multiply method
pub fn (f1 Fraction) multiply(f2 Fraction) Fraction {
return Fraction{f1.n * f2.n, f1.d * f2.d}
2019-07-03 12:12:36 +02:00
}
// Fraction divide method
pub fn (f1 Fraction) divide(f2 Fraction) Fraction {
return Fraction{f1.n * f2.d, f1.d * f2.n}
2019-07-03 12:12:36 +02:00
}
// Fraction reciprocal method
pub fn (f1 Fraction) reciprocal() Fraction {
if f1.n == 0 { panic('Denominator cannot be zero') }
return Fraction{f1.d, f1.n}
2019-07-03 12:12:36 +02:00
}
// Fraction method which gives greatest common divisor of numerator and denominator
pub fn (f1 Fraction) gcd() i64 {
2019-07-15 21:16:41 +02:00
return math.gcd(f1.n, f1.d)
2019-07-03 12:12:36 +02:00
}
// Fraction method which reduces the fraction
pub fn (f1 Fraction) reduce() Fraction {
cf := f1.gcd()
return Fraction{f1.n / cf, f1.d / cf}
2019-07-03 12:12:36 +02:00
}
// Converts Fraction to decimal
pub fn (f1 Fraction) f64() f64 {
return f64(f1.n) / f64(f1.d)
2019-07-03 12:12:36 +02:00
}
// Compares two Fractions
pub fn (f1 Fraction) equals(f2 Fraction) bool {
r1 := f1.reduce()
r2 := f2.reduce()
return (r1.n == r2.n) && (r1.d == r2.d)
}