- ()
+- /Users/runner/work/C-Plus-Plus/C-Plus-Plus/math/iterative_factorial.cpp
- /Users/runner/work/C-Plus-Plus/C-Plus-Plus/math/quadratic_equations_complex_numbers.cpp
- /Users/runner/work/C-Plus-Plus/C-Plus-Plus/numerical_methods/rungekutta.cpp
- /Users/runner/work/C-Plus-Plus/C-Plus-Plus/sorting/wiggle_sort.cpp
diff --git a/examples.js b/examples.js
index 45ea3fb2d..684c572cb 100644
--- a/examples.js
+++ b/examples.js
@@ -1,6 +1,7 @@
var examples =
[
[ "()", "db/d03/_s_t-example.html", null ],
+ [ "/Users/runner/work/C-Plus-Plus/C-Plus-Plus/math/iterative_factorial.cpp", "d6/d50/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2math_2iterative_factorial_8cpp-example.html", null ],
[ "/Users/runner/work/C-Plus-Plus/C-Plus-Plus/math/quadratic_equations_complex_numbers.cpp", "df/dcd/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2math_2quadratic_equations_complex_numbers_8cpp-example.html", null ],
[ "/Users/runner/work/C-Plus-Plus/C-Plus-Plus/numerical_methods/rungekutta.cpp", "dc/dc4/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2numerical_methods_2rungekutta_8cpp-example.html", null ],
[ "/Users/runner/work/C-Plus-Plus/C-Plus-Plus/sorting/wiggle_sort.cpp", "dd/db0/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2sorting_2wiggle_sort_8cpp-example.html", null ]
diff --git a/files.html b/files.html
index 66d1f3b7b..bf7bc1312 100644
--- a/files.html
+++ b/files.html
@@ -254,38 +254,39 @@ solve-a-rat-in-a-maze-c-java-pytho/" target="_blank">Rat in a Maze algorithm
| integral_approximation.cpp | Compute integral approximation of the function using Riemann sum |
| integral_approximation2.cpp | Monte Carlo Integration |
| inv_sqrt.cpp | Implementation of the inverse square root Root |
-| large_factorial.cpp | Compute factorial of any arbitratily large number/ |
-| large_number.h | Library to perform arithmatic operations on arbitrarily large numbers |
-| largest_power.cpp | Algorithm to find largest x such that p^x divides n! (factorial) using Legendre's Formula |
-| lcm_sum.cpp | An algorithm to calculate the sum of LCM: \(\mathrm{LCM}(1,n) +
+ |
| iterative_factorial.cpp | Iterative implementation of Factorial |
+| large_factorial.cpp | Compute factorial of any arbitratily large number/ |
+| large_number.h | Library to perform arithmatic operations on arbitrarily large numbers |
+| largest_power.cpp | Algorithm to find largest x such that p^x divides n! (factorial) using Legendre's Formula |
+| lcm_sum.cpp | An algorithm to calculate the sum of LCM: \(\mathrm{LCM}(1,n) +
\mathrm{LCM}(2,n) + \ldots + \mathrm{LCM}(n,n)\) |
-| least_common_multiple.cpp | |
-| magic_number.cpp | A simple program to check if the given number is a magic number or not. A number is said to be a magic number, if the sum of its digits are calculated till a single digit recursively by adding the sum of the digits after every addition. If the single digit comes out to be 1,then the number is a magic number |
-| miller_rabin.cpp | |
-| modular_division.cpp | An algorithm to divide two numbers under modulo p Modular Division |
-| modular_exponentiation.cpp | C++ Program for Modular Exponentiation Iteratively |
-| modular_inverse_fermat_little_theorem.cpp | C++ Program to find the modular inverse using Fermat's Little Theorem |
-| modular_inverse_simple.cpp | Simple implementation of modular multiplicative inverse |
-| n_bonacci.cpp | Implementation of the N-bonacci series |
-| n_choose_r.cpp | Combinations n choose r function implementation |
-| ncr_modulo_p.cpp | This program aims at calculating nCr modulo p |
-| number_of_positive_divisors.cpp | C++ Program to calculate the number of positive divisors |
-| perimeter.cpp | Implementations for the perimeter of various shapes |
-| power_for_huge_numbers.cpp | Compute powers of large numbers |
-| power_of_two.cpp | Implementation to check whether a number is a power of 2 or not |
-| prime_factorization.cpp | Prime factorization of positive integers |
-| prime_numbers.cpp | Get list of prime numbers |
-| primes_up_to_billion.cpp | Compute prime numbers upto 1 billion |
-| quadratic_equations_complex_numbers.cpp | Calculate quadratic equation with complex roots, i.e. b^2 - 4ac < 0 |
-| realtime_stats.cpp | Compute statistics for data entered in rreal-time |
-| sieve_of_eratosthenes.cpp | Get list of prime numbers using Sieve of Eratosthenes |
-| sqrt_double.cpp | Calculate the square root of any positive real number in \(O(\log
+ |
| least_common_multiple.cpp | |
+| magic_number.cpp | A simple program to check if the given number is a magic number or not. A number is said to be a magic number, if the sum of its digits are calculated till a single digit recursively by adding the sum of the digits after every addition. If the single digit comes out to be 1,then the number is a magic number |
+| miller_rabin.cpp | |
+| modular_division.cpp | An algorithm to divide two numbers under modulo p Modular Division |
+| modular_exponentiation.cpp | C++ Program for Modular Exponentiation Iteratively |
+| modular_inverse_fermat_little_theorem.cpp | C++ Program to find the modular inverse using Fermat's Little Theorem |
+| modular_inverse_simple.cpp | Simple implementation of modular multiplicative inverse |
+| n_bonacci.cpp | Implementation of the N-bonacci series |
+| n_choose_r.cpp | Combinations n choose r function implementation |
+| ncr_modulo_p.cpp | This program aims at calculating nCr modulo p |
+| number_of_positive_divisors.cpp | C++ Program to calculate the number of positive divisors |
+| perimeter.cpp | Implementations for the perimeter of various shapes |
+| power_for_huge_numbers.cpp | Compute powers of large numbers |
+| power_of_two.cpp | Implementation to check whether a number is a power of 2 or not |
+| prime_factorization.cpp | Prime factorization of positive integers |
+| prime_numbers.cpp | Get list of prime numbers |
+| primes_up_to_billion.cpp | Compute prime numbers upto 1 billion |
+| quadratic_equations_complex_numbers.cpp | Calculate quadratic equation with complex roots, i.e. b^2 - 4ac < 0 |
+| realtime_stats.cpp | Compute statistics for data entered in rreal-time |
+| sieve_of_eratosthenes.cpp | Get list of prime numbers using Sieve of Eratosthenes |
+| sqrt_double.cpp | Calculate the square root of any positive real number in \(O(\log
N)\) time, with precision fixed using bisection method of root-finding |
-| string_fibonacci.cpp | This Programme returns the Nth fibonacci as a string |
-| sum_of_binomial_coefficient.cpp | Algorithm to find sum of binomial coefficients of a given positive integer |
-| sum_of_digits.cpp | A C++ Program to find the Sum of Digits of input integer |
-| vector_cross_product.cpp | Calculates the Cross Product and the magnitude of two mathematical 3D vectors |
-| volume.cpp | Implmentations for the volume of various 3D shapes |
+| string_fibonacci.cpp | This Programme returns the Nth fibonacci as a string |
+| sum_of_binomial_coefficient.cpp | Algorithm to find sum of binomial coefficients of a given positive integer |
+| sum_of_digits.cpp | A C++ Program to find the Sum of Digits of input integer |
+| vector_cross_product.cpp | Calculates the Cross Product and the magnitude of two mathematical 3D vectors |
+| volume.cpp | Implmentations for the volume of various 3D shapes |
| ► numerical_methods | |
| babylonian_method.cpp | A babylonian method (BM) is an algorithm that computes the square root |
| bisection_method.cpp | Solve the equation \(f(x)=0\) using bisection method |
diff --git a/globals_func_m.html b/globals_func_m.html
index 13c90cd07..204cf52ac 100644
--- a/globals_func_m.html
+++ b/globals_func_m.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('globals_func_m.html',''); initResizabl
Here is a list of all documented functions with links to the documentation:
- m -