diff --git a/d3/d60/union__find_8c__incl.map b/d3/d60/union__find_8c__incl.map
new file mode 100644
index 00000000..dda925cc
--- /dev/null
+++ b/d3/d60/union__find_8c__incl.map
@@ -0,0 +1,5 @@
+
diff --git a/d3/d60/union__find_8c__incl.md5 b/d3/d60/union__find_8c__incl.md5
new file mode 100644
index 00000000..556e71de
--- /dev/null
+++ b/d3/d60/union__find_8c__incl.md5
@@ -0,0 +1 @@
+3110a7b4e100bdc0570963f3c26dc8cd
\ No newline at end of file
diff --git a/d3/d60/union__find_8c__incl.svg b/d3/d60/union__find_8c__incl.svg
new file mode 100644
index 00000000..cfaff7d5
--- /dev/null
+++ b/d3/d60/union__find_8c__incl.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
diff --git a/d4/d68/qr__decompose_8h_source.html b/d4/d68/qr__decompose_8h_source.html
index 4005bfef..95ac3b51 100644
--- a/d4/d68/qr__decompose_8h_source.html
+++ b/d4/d68/qr__decompose_8h_source.html
@@ -301,6 +301,7 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
dynamically large number
Definition: factorial_large_number.c:15
void test2()
Test that creates a random set of points distributed near the locus of the Lamniscate of Gerono and t...
Definition: kohonen_som_trace.c:358
void swap(int *a, int *b)
Swap two integer variables.
Definition: merge_sort.c:17
+#define MAX_SIZE
maximum number of elements in the set
Definition: union_find.c:8
double * weights
weights of the neural network
Definition: adaline_learning.c:46
void forward_euler_step(const double dx, const double *x, double *y, double *dy)
Compute next step approximation using the forward-Euler method.
Definition: ode_forward_euler.c:82
@@ -316,6 +317,7 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
void propagate(CantorSet *head)
Iterative constructor of all sets in the current level.
Definition: cantor_set.c:23
double vector_mag(double *vector, int L)
Compute magnitude of vector.
Definition: qr_decompose.h:64
void adaline_fit(struct adaline *ada, double **X, const int *y, const int N)
Update the weights of the model using supervised learning for an array of vectors.
Definition: adaline_learning.c:184
+void join(int *p, int x, int y)
Function to join.
Definition: union_find.c:42
void test_circle(double *const *data, int N)
Creates a random set of points distributed near the circumference of a circle and trains an SOM that ...
Definition: kohonen_som_trace.c:223
double forward_euler(double dx, double x0, double x_max, double *y, char save_to_file)
Compute approximation using the forward-Euler method in the given limits.
Definition: ode_forward_euler.c:99
Definition: prime_factoriziation.c:25
@@ -344,12 +346,14 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
void qr_decompose(double **A, double **Q, double **R, int M, int N)
Decompose matrix using Gram-Schmidt process.
Definition: qr_decompose.h:142
const char * complex_str(long double complex x)
create a textual form of complex number
Definition: durand_kerner_roots.c:66
+int main()
Main function.
Definition: cartesian_to_polar.c:118
int main(int argc, char *argv[])
main function
Definition: fibonacci_fast.c:65
struct _large_num large_num
dynamically large number
large_num * new_number(void)
create a new large number
Definition: factorial_large_number.c:24
char check_termination(long double delta)
check for termination condition
Definition: durand_kerner_roots.c:83
double semi_implicit_euler(double dx, double x0, double x_max, double *y, char save_to_file)
Compute approximation using the semi-implicit-Euler method in the given limits.
Definition: ode_semi_implicit_euler.c:109
long double complex poly_function(long double *coeffs, unsigned int degree, long double complex x)
Evaluate the value of a polynomial with given coefficients.
Definition: durand_kerner_roots.c:50
+int main()
Main function.
Definition: union_find.c:45
int main(int argc, char *argv[])
main function
Definition: factorial_large_number.c:94
#define ADALINE_ACCURACY
convergence accuracy
Definition: adaline_learning.c:51
void multiply(large_num *num, unsigned long n)
multiply large number with another integer and store the result in the same large number
Definition: factorial_large_number.c:66
@@ -375,6 +379,7 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
void delete_adaline(struct adaline *ada)
delete dynamically allocated memory
Definition: adaline_learning.c:89
void kohonen_som_tracer(double **X, double *const *W, int num_samples, int num_features, int num_out, double alpha_min)
Apply incremental algorithm with updating neighborhood and learning rates on all samples in the given...
Definition: kohonen_som_trace.c:179
void test2()
Test that creates a random set of points distributed in 4 clusters in 3D space and trains an SOM that...
Definition: kohonen_som_topology.c:506
+int find(int *p, int x)
Find index of or value in an array.
Definition: union_find.c:17
void problem(const double *x, double *y, double *dy)
Problem statement for a system with first-order differential equations.
Definition: ode_forward_euler.c:55
void problem(const double *x, double *y, double *dy)
Problem statement for a system with first-order differential equations.
Definition: ode_semi_implicit_euler.c:58
double get_clock_diff(clock_t start_t, clock_t end_t)
Convert clock cycle difference to time in seconds.
Definition: kohonen_som_trace.c:511
@@ -383,6 +388,7 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
void get_min_2d(double **X, int N, double *val, int *x_idx, int *y_idx)
Get minimum value and index of the value in a matrix.
Definition: kohonen_som_topology.c:204
#define MAX_LEN
length of resulting recurring fraction number
Definition: sol1.c:15
struct Node node
Node, the basic data structure of the tree.
+void to_polar(double x, double y, double *r, double *theta)
Function to convert cartesian coordinates to polar.
Definition: cartesian_to_polar.c:22
void search(node *root, int ele)
searches for the element
Definition: threaded_binary_trees.c:98
void test(void)
Test function to save resulting points to a CSV file.
Definition: spirograph.c:74
#define max(a, b)
shorthand for maximum value
Definition: kohonen_som_trace.c:32
@@ -417,8 +423,10 @@ $(document).ready(function(){initNavTree('d4/d68/qr__decompose_8h_source.html','
double kohonen_update_weights(const double *X, struct kohonen_array_3d *W, double **D, int num_out, int num_features, double alpha, int R)
Update weights of the SOM using Kohonen algorithm.
Definition: kohonen_som_topology.c:234
#define ACCURACY
solution accuracy
Definition: newton_raphson_root.c:16
void test_3d_classes(double *const *data, int N)
Creates a random set of points distributed in four clusters in 3D space with centroids at the points.
Definition: kohonen_som_trace.c:410
+void test()
Test implementation.
Definition: cartesian_to_polar.c:98
int adaline_predict(struct adaline *ada, const double *x, double *out)
predict the output of the model for given set of features
Definition: adaline_learning.c:136
structure to hold adaline model parameters
Definition: adaline_learning.c:44
+double get_rand(double lim1, double lim2)
Generate a random number in the given limits.
Definition: cartesian_to_polar.c:88
int save_u_matrix(const char *fname, struct kohonen_array_3d *W)
Create the distance matrix or U-matrix from the trained weights and save to disk.
Definition: kohonen_som_topology.c:139
void semi_implicit_euler_step(double dx, double *x, double *y, double *dy)
Compute next step approximation using the semi-implicit-Euler method.
Definition: ode_semi_implicit_euler.c:85
void test1()
Test that creates a random set of points distributed in four clusters in 2D space and trains an SOM t...
Definition: kohonen_som_topology.c:406
diff --git a/d4/ddb/jump__search_8c__incl.map b/d4/ddb/jump__search_8c__incl.map
new file mode 100644
index 00000000..86995e53
--- /dev/null
+++ b/d4/ddb/jump__search_8c__incl.map
@@ -0,0 +1,6 @@
+
diff --git a/d4/ddb/jump__search_8c__incl.md5 b/d4/ddb/jump__search_8c__incl.md5
new file mode 100644
index 00000000..2569bda4
--- /dev/null
+++ b/d4/ddb/jump__search_8c__incl.md5
@@ -0,0 +1 @@
+327be80b3740abab03de5f59a0f7f953
\ No newline at end of file
diff --git a/d4/ddb/jump__search_8c__incl.svg b/d4/ddb/jump__search_8c__incl.svg
new file mode 100644
index 00000000..2f59e3a3
--- /dev/null
+++ b/d4/ddb/jump__search_8c__incl.svg
@@ -0,0 +1,67 @@
+
+
+
+
+
diff --git a/d6/d2e/cartesian__to__polar_8c.html b/d6/d2e/cartesian__to__polar_8c.html
new file mode 100644
index 00000000..decb3ab5
--- /dev/null
+++ b/d6/d2e/cartesian__to__polar_8c.html
@@ -0,0 +1,349 @@
+
+
+
+
+
+
+
+Algorithms_in_C: misc/cartesian_to_polar.c File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Function to convert a Cartesian co-ordinate to polar form.
+More...
+
#include <assert.h>
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+ |
+void | to_polar (double x, double y, double *r, double *theta) |
+ | Function to convert cartesian coordinates to polar. More...
|
+ |
+double | get_rand (double lim1, double lim2) |
+ | Generate a random number in the given limits. More...
|
+ |
+void | test () |
+ | Test implementation. More...
|
+ |
+
+int | main () |
+ | Main function.
|
+ |
+
+
+
Function to convert a Cartesian co-ordinate to polar form.
+
+
+
◆ get_rand()
+
+
+
+
+
+ double get_rand |
+ ( |
+ double |
+ lim1, |
+
+
+ |
+ |
+ double |
+ lim2 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Generate a random number in the given limits.
+
- Parameters
-
+
+ lim1 | lower limit |
+ lim2 | upper limit |
+
+
+
+
- Returns
- random number in the given range
+
+
90 double r = (double)rand() / RAND_MAX;
+
91 return (lim2 - lim1) * r + lim1;
+
+
+
+
+
+
◆ test()
+
+
+
+
+
+ void test |
+ ( |
+ | ) |
+ |
+
+
+
+
+
Test implementation.
+
+
+
+
+
103 for (
int i = 0; i < NUM_TESTS; i++)
+
+
+
106 printf(
"Test %d.... ", i);
+
+
+
109 printf(
"(%.2g, %.2g).... ", x, y);
+
+
111 assert(fabs(r - hypot(x, y)) < 0.01);
+
112 assert(fabs(theta - atan2(y, x)) < 0.01);
+
+
+
+
+
+
+
+
+
+
◆ to_polar()
+
+
+
+
+
+ void to_polar |
+ ( |
+ double |
+ x, |
+
+
+ |
+ |
+ double |
+ y, |
+
+
+ |
+ |
+ double * |
+ r, |
+
+
+ |
+ |
+ double * |
+ theta |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Function to convert cartesian coordinates to polar.
+
+\begin{eqnarray*} r &=& \sqrt{x^2+y^2}\\ \theta &=& \atan\frac{y}{x} \end{eqnarray*}
+
+
- Parameters
-
+
+ [in] | x | absicca value |
+ [in] | y | ordinate value |
+ [out] | r | pointer to store polar radius |
+ [out] | theta | pointer to store polar angle (in radian) |
+
+
+
+
+
24 double thetaFinal = 0.f;
+
+
26 *r = sqrt(x * x + y * y);
+
+
+
+
+
+
+
33 if ((x > 0 && y > 0) || (x == -y))
+
+
+
+
37 else if (x < 0 && y > 0)
+
+
39 thetaFinal = *theta + M_PI;
+
+
41 else if (x < 0 && y < 0)
+
+
43 thetaFinal = *theta - M_PI;
+
+
45 else if (x > 0 && y < 0)
+
+
47 thetaFinal = 2 * M_PI - *theta;
+
+
+
+
51 fprintf(stderr,
"Should not reach here!\n");
+
+
+
+
+
+
+
+
59 thetaFinal = M_PI / 2;
+
+
+
+
63 thetaFinal = -(M_PI / 2);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+void to_polar(double x, double y, double *r, double *theta)
Function to convert cartesian coordinates to polar.
Definition: cartesian_to_polar.c:22
+double get_rand(double lim1, double lim2)
Generate a random number in the given limits.
Definition: cartesian_to_polar.c:88
+
+
+
+
diff --git a/d6/d2e/cartesian__to__polar_8c.js b/d6/d2e/cartesian__to__polar_8c.js
new file mode 100644
index 00000000..5917a989
--- /dev/null
+++ b/d6/d2e/cartesian__to__polar_8c.js
@@ -0,0 +1,8 @@
+var cartesian__to__polar_8c =
+[
+ [ "_USE_MATH_DEFINES", "d6/d2e/cartesian__to__polar_8c.html#a525335710b53cb064ca56b936120431e", null ],
+ [ "get_rand", "d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60", null ],
+ [ "main", "d6/d2e/cartesian__to__polar_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ],
+ [ "test", "d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002", null ],
+ [ "to_polar", "d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70", null ]
+];
\ No newline at end of file
diff --git a/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map
new file mode 100644
index 00000000..454b6e7d
--- /dev/null
+++ b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map
@@ -0,0 +1,5 @@
+
diff --git a/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5 b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5
new file mode 100644
index 00000000..a1b85eb2
--- /dev/null
+++ b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5
@@ -0,0 +1 @@
+2c5d2f5e5189556fa8fce980a3d56f4a
\ No newline at end of file
diff --git a/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg
new file mode 100644
index 00000000..c89e8020
--- /dev/null
+++ b/d6/d2e/cartesian__to__polar_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
diff --git a/d6/d7b/jump__search_8c.html b/d6/d7b/jump__search_8c.html
new file mode 100644
index 00000000..fa72a051
--- /dev/null
+++ b/d6/d7b/jump__search_8c.html
@@ -0,0 +1,268 @@
+
+
+
+
+
+
+
+Algorithms_in_C: searching/jump_search.c File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Implementation of jump search algorithm.
+More...
+
#include <assert.h>
+#include <math.h>
+#include <stdio.h>
+
+ |
+
+#define | min(X, Y) ((X) < (Y) ? (X) : (Y)) |
+ | Macro to return the minimum of two values.
|
+ |
+
+ |
+int | jump_search (const int *arr, int x, size_t n) |
+ | Implement Jump-search algorithm. More...
|
+ |
+void | test () |
+ | Test implementation of the function. More...
|
+ |
+
+int | main () |
+ | Main function.
|
+ |
+
+
+
Implementation of jump search algorithm.
+
+
+
◆ jump_search()
+
+
+
+
+
+ int jump_search |
+ ( |
+ const int * |
+ arr, |
+
+
+ |
+ |
+ int |
+ x, |
+
+
+ |
+ |
+ size_t |
+ n |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Implement Jump-search algorithm.
+
- Parameters
-
+
+ [in] | arr | Array to search within |
+ | x | value to search for |
+ | n | length of array |
+
+
+
+
- Returns
- index where the value was found
+-
+-1 if value not found
+
+
26 int step = floor(sqrt(n));
+
+
+
29 while (arr[
min(step, n) - 1] < x)
+
+
+
32 step += floor(sqrt(n));
+
+
+
+
+
+
+
+
+
+
42 if (prev ==
min(step, n))
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
◆ test()
+
+
+
+
+
+ void test |
+ ( |
+ | ) |
+ |
+
+
+
+
+
Test implementation of the function.
+
+
60 int arr[] = {0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610};
+
61 size_t n =
sizeof(arr) /
sizeof(
int);
+
+
+
64 printf(
"Test 1.... ");
+
+
+
67 printf(
"passed\nTest 2.... ");
+
+
+
+
71 printf(
"passed\nTest 3.... ");
+
+
+
+
+
+
+
+
+
+
+
+
+int jump_search(const int *arr, int x, size_t n)
Implement Jump-search algorithm.
Definition: jump_search.c:24
+#define min(X, Y)
Macro to return the minimum of two values.
Definition: jump_search.c:13
+
+
+
+
diff --git a/d6/d7b/jump__search_8c.js b/d6/d7b/jump__search_8c.js
new file mode 100644
index 00000000..fb98b870
--- /dev/null
+++ b/d6/d7b/jump__search_8c.js
@@ -0,0 +1,7 @@
+var jump__search_8c =
+[
+ [ "min", "d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e", null ],
+ [ "jump_search", "d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603", null ],
+ [ "main", "d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ],
+ [ "test", "d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002", null ]
+];
\ No newline at end of file
diff --git a/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map
new file mode 100644
index 00000000..b5502e9e
--- /dev/null
+++ b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.map
@@ -0,0 +1,4 @@
+
diff --git a/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5 b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5
new file mode 100644
index 00000000..094d5b08
--- /dev/null
+++ b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5
@@ -0,0 +1 @@
+175f6e30064c05e79538752a9553ecbc
\ No newline at end of file
diff --git a/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg
new file mode 100644
index 00000000..631e667b
--- /dev/null
+++ b/d6/d7b/jump__search_8c_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
diff --git a/d7/dd8/c__atoi__str__to__integer_8c.html b/d7/dd8/c__atoi__str__to__integer_8c.html
index c49463f0..bfe6d9be 100644
--- a/d7/dd8/c__atoi__str__to__integer_8c.html
+++ b/d7/dd8/c__atoi__str__to__integer_8c.html
@@ -243,6 +243,7 @@ Here is the call graph for this function:
int main()
Main function.
Definition: sol1.c:12
void swap(int *a, int *b)
Swap two integer variables.
Definition: merge_sort.c:17
+int main()
Main function.
Definition: jump_search.c:81
int main(void)
Main function.
Definition: merge_sort.c:101
int is_palindromic(unsigned int n)
Check if number is palindromic.
Definition: sol.c:12
#define MOD
modulo limit
Definition: sol1.c:17
@@ -250,12 +251,14 @@ Here is the call graph for this function:
uint64_t get_divisors(uint64_t N, uint64_t *D)
Get all integer divisors of a number.
Definition: sol1.c:43
#define EPSILON
accuracy tolerance limit
Definition: qr_eigen_values.c:20
int compare(const void *a, const void *b)
comparison function for use with internal qsort algorithm
Definition: sol1.c:19
+int jump_search(const int *arr, int x, size_t n)
Implement Jump-search algorithm.
Definition: jump_search.c:24
void shell_sort(char data[][MAX_NAME_LEN], int LEN)
Alphabetical sorting using 'shell sort' algorithm.
Definition: sol1.c:20
long long int get_product(FILE *fp, long start_pos, int num_digits)
Compute the product of two numbers in a file.
Definition: sol1.c:16
int main(int argc, char **argv)
main function
Definition: qr_eigen_values.c:315
#define MAX_L
chunk size of array allocation
Definition: sol1.c:18
Definition: prime_factoriziation.c:25
void modifiedBinarySearch(const int **mat, int n, int m, int x)
Function to perform binary search on the mid values of row to get the desired pair of rows where the ...
Definition: modified_binary_search.c:48
+void test()
Test implementation of the function.
Definition: jump_search.c:58
char get_perfect_number(unsigned long N)
Definition: sol2.c:33
void lazy_sort(char data[][MAX_NAME_LEN], int LEN)
Alphabetical sorting using 'lazy sort' algorithm.
Definition: sol1.c:48
int main()
Main function.
Definition: so1.c:17
@@ -263,6 +266,7 @@ Here is the call graph for this function:
#define N2
number of digits in output number
Definition: sol1.c:111
Kyler Smith, 2017 Stack data structure implementation.
Definition: binary_search_tree.c:14
#define MAX_NAME_LEN
Maximum length of each name.
Definition: sol1.c:15
+#define min(X, Y)
Macro to return the minimum of two values.
Definition: jump_search.c:13
void bead_sort(int *a, size_t len)
This is where the sorting of the array takes place.
Definition: bead_sort.c:37
void stats_computer1(float x, float *mean, float *variance, float *std)
continuous mean and variance computance using first value as an approximation for the mean.
Definition: realtime_stats.c:24
void test2()
test function to compute eigen values of a 2x2 matrix
Definition: qr_eigen_values.c:271
diff --git a/d8/d38/queue_8h_source.html b/d8/d38/queue_8h_source.html
index 86193f6e..47489d8d 100644
--- a/d8/d38/queue_8h_source.html
+++ b/d8/d38/queue_8h_source.html
@@ -132,6 +132,7 @@ $(document).ready(function(){initNavTree('d8/d38/queue_8h_source.html','../../')
Definition: prime_factoriziation.c:25
Kyler Smith, 2017 Stack data structure implementation.
Definition: binary_search_tree.c:14
+int find(int *p, int x)
Find index of or value in an array.
Definition: union_find.c:17
int main(int argc, char **argv)
the main function take one argument of type char* example : .
Definition: c_atoi_str_to_integer.c:72
diff --git a/d8/d7c/cartesian__to__polar_8c__incl.map b/d8/d7c/cartesian__to__polar_8c__incl.map
new file mode 100644
index 00000000..91cd24f7
--- /dev/null
+++ b/d8/d7c/cartesian__to__polar_8c__incl.map
@@ -0,0 +1,7 @@
+
diff --git a/d8/d7c/cartesian__to__polar_8c__incl.md5 b/d8/d7c/cartesian__to__polar_8c__incl.md5
new file mode 100644
index 00000000..a3cb22ae
--- /dev/null
+++ b/d8/d7c/cartesian__to__polar_8c__incl.md5
@@ -0,0 +1 @@
+ed20aac311f7709012a1c39736161313
\ No newline at end of file
diff --git a/d8/d7c/cartesian__to__polar_8c__incl.svg b/d8/d7c/cartesian__to__polar_8c__incl.svg
new file mode 100644
index 00000000..b4bd4161
--- /dev/null
+++ b/d8/d7c/cartesian__to__polar_8c__incl.svg
@@ -0,0 +1,82 @@
+
+
+
+
+
diff --git a/d8/d7c/dict_8h_source.html b/d8/d7c/dict_8h_source.html
index 595dc4ae..1666057b 100644
--- a/d8/d7c/dict_8h_source.html
+++ b/d8/d7c/dict_8h_source.html
@@ -170,6 +170,7 @@ $(document).ready(function(){initNavTree('d8/d7c/dict_8h_source.html','../../');
Node, the basic data structure of the tree.
Definition: threaded_binary_trees.c:27
void postorder_display(node *curr)
performs postorder traversal param[in] curr node pointer to the topmost node of the tree
Definition: threaded_binary_trees.c:143
+int find(int *p, int x)
Find index of or value in an array.
Definition: union_find.c:17
struct Node node
Node, the basic data structure of the tree.
void search(node *root, int ele)
searches for the element
Definition: threaded_binary_trees.c:98
struct Node * llink
link to left child
Definition: threaded_binary_trees.c:29
diff --git a/dc/de3/hash__set_8h_source.html b/dc/de3/hash__set_8h_source.html
index 2a37cf1c..32c74f00 100644
--- a/dc/de3/hash__set_8h_source.html
+++ b/dc/de3/hash__set_8h_source.html
@@ -129,6 +129,7 @@ $(document).ready(function(){initNavTree('dc/de3/hash__set_8h_source.html','../.
+#define MAX_SIZE
maximum number of elements in the set
Definition: union_find.c:8
Kyler Smith, 2017 Stack data structure implementation.
Definition: binary_search_tree.c:14
Definition: strongly_connected_components.c:23
diff --git a/dd/d10/struct_stack.html b/dd/d10/struct_stack.html
index 1b2256e1..8fbf7bb9 100644
--- a/dd/d10/struct_stack.html
+++ b/dd/d10/struct_stack.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dd/d10/struct_stack.html','../../'); i
|
-int | arr [MAX_SIZE] |
+int arr [MAX_SIZE] |
|
int | top |
diff --git a/df/df3/union__find_8c.html b/df/df3/union__find_8c.html
new file mode 100644
index 00000000..4c8111b0
--- /dev/null
+++ b/df/df3/union__find_8c.html
@@ -0,0 +1,255 @@
+
+
+
+
+
+
+
+Algorithms_in_C: misc/union_find.c File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Union find algorithm.
+More...
+
#include <stdio.h>
+#include <stdlib.h>
+
+ |
+
+#define | MAX_SIZE 1000 |
+ | maximum number of elements in the set
|
+ |
+
+ |
+int | find (int *p, int x) |
+ | Find index of or value in an array. More...
|
+ |
+void | join (int *p, int x, int y) |
+ | Function to join. More...
|
+ |
+
+int | main () |
+ | Main function.
|
+ |
+
+
+
+
+
◆ find()
+
+
+
+
+
+ int find |
+ ( |
+ int * |
+ p, |
+
+
+ |
+ |
+ int |
+ x |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Find index of or value in an array.
+
- Parameters
-
+
+ [in,out] | p | array to search and update |
+ | x | value to search |
+
+
+
+
- Returns
- value at the index
x
+
+
+
+
21 fprintf(stderr,
"Out-of bounds value\n");
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
◆ join()
+
+
+
+
+
+ void join |
+ ( |
+ int * |
+ p, |
+
+
+ |
+ |
+ int |
+ x, |
+
+
+ |
+ |
+ int |
+ y |
+
+
+ |
+ ) |
+ | |
+
+
+
+
+
Function to join.
+
- Parameters
-
+
+ [in,out] | p | array to join in |
+ | x | value or index to join to |
+ | y | value or index to join from |
+
+
+
+
+
+
+
+
+
+
+#define MAX_SIZE
maximum number of elements in the set
Definition: union_find.c:8
+int find(int *p, int x)
Find index of or value in an array.
Definition: union_find.c:17
+
+
+
+
diff --git a/df/df3/union__find_8c.js b/df/df3/union__find_8c.js
new file mode 100644
index 00000000..7a228cdc
--- /dev/null
+++ b/df/df3/union__find_8c.js
@@ -0,0 +1,7 @@
+var union__find_8c =
+[
+ [ "MAX_SIZE", "df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe", null ],
+ [ "find", "df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86", null ],
+ [ "join", "df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a", null ],
+ [ "main", "df/df3/union__find_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ]
+];
\ No newline at end of file
diff --git a/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.map b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.map
new file mode 100644
index 00000000..46183688
--- /dev/null
+++ b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.map
@@ -0,0 +1,4 @@
+
diff --git a/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.md5 b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.md5
new file mode 100644
index 00000000..83d6157d
--- /dev/null
+++ b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.md5
@@ -0,0 +1 @@
+23aaec78ffc7741b73fefb45a6808dc2
\ No newline at end of file
diff --git a/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.svg b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.svg
new file mode 100644
index 00000000..ae7e95b2
--- /dev/null
+++ b/df/df3/union__find_8c_af2f3ff6d98641f7d3be11f071c97908a_cgraph.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
diff --git a/dir_a52f4d3d586a58b02f3a4ddf0a992157.html b/dir_a52f4d3d586a58b02f3a4ddf0a992157.html
index 8e2a51ca..107c4255 100644
--- a/dir_a52f4d3d586a58b02f3a4ddf0a992157.html
+++ b/dir_a52f4d3d586a58b02f3a4ddf0a992157.html
@@ -100,6 +100,9 @@ Files
file | cantor_set.c |
| Program to generate Cantor ternary set
|
|
+file | cartesian_to_polar.c |
+ | Function to convert a Cartesian co-ordinate to polar form.
|
+ |
file | collatz.c |
| Implementation of Collatz' conjecture
|
|
@@ -112,6 +115,9 @@ Files
file | sudoku_solver.c |
| Sudoku Solver using recursive implementation of brute-force algorithm.
|
|
+file | union_find.c |
+ | Union find algorithm.
|
+ |
diff --git a/dir_a52f4d3d586a58b02f3a4ddf0a992157.js b/dir_a52f4d3d586a58b02f3a4ddf0a992157.js
index 4087147b..7ffe6202 100644
--- a/dir_a52f4d3d586a58b02f3a4ddf0a992157.js
+++ b/dir_a52f4d3d586a58b02f3a4ddf0a992157.js
@@ -1,8 +1,10 @@
var dir_a52f4d3d586a58b02f3a4ddf0a992157 =
[
[ "cantor_set.c", "dc/d80/cantor__set_8c.html", "dc/d80/cantor__set_8c" ],
+ [ "cartesian_to_polar.c", "d6/d2e/cartesian__to__polar_8c.html", "d6/d2e/cartesian__to__polar_8c" ],
[ "collatz.c", "dc/d80/collatz_8c.html", "dc/d80/collatz_8c" ],
[ "factorial_large_number.c", "d6/d3d/factorial__large__number_8c.html", "d6/d3d/factorial__large__number_8c" ],
[ "fibonacci_fast.c", "d4/d99/fibonacci__fast_8c.html", "d4/d99/fibonacci__fast_8c" ],
- [ "sudoku_solver.c", "de/dac/sudoku__solver_8c.html", "de/dac/sudoku__solver_8c" ]
+ [ "sudoku_solver.c", "de/dac/sudoku__solver_8c.html", "de/dac/sudoku__solver_8c" ],
+ [ "union_find.c", "df/df3/union__find_8c.html", "df/df3/union__find_8c" ]
];
\ No newline at end of file
diff --git a/dir_da574daf9ce9c05b45556bdc871ed1e3.html b/dir_da574daf9ce9c05b45556bdc871ed1e3.html
index cf5b0a12..5f9077ef 100644
--- a/dir_da574daf9ce9c05b45556bdc871ed1e3.html
+++ b/dir_da574daf9ce9c05b45556bdc871ed1e3.html
@@ -103,6 +103,9 @@ Files
file | binary_search.c |
| Program to perform binary search of a target value in a given sorted array.
|
|
+file | jump_search.c |
+ | Implementation of jump search algorithm.
|
+ |
file | modified_binary_search.c |
| Modified binary search algorithm
|
|
diff --git a/dir_da574daf9ce9c05b45556bdc871ed1e3.js b/dir_da574daf9ce9c05b45556bdc871ed1e3.js
index 4a77b54e..30b7a4f1 100644
--- a/dir_da574daf9ce9c05b45556bdc871ed1e3.js
+++ b/dir_da574daf9ce9c05b45556bdc871ed1e3.js
@@ -1,5 +1,6 @@
var dir_da574daf9ce9c05b45556bdc871ed1e3 =
[
[ "binary_search.c", "df/d3b/binary__search_8c.html", "df/d3b/binary__search_8c" ],
+ [ "jump_search.c", "d6/d7b/jump__search_8c.html", "d6/d7b/jump__search_8c" ],
[ "modified_binary_search.c", "d3/d47/modified__binary__search_8c.html", "d3/d47/modified__binary__search_8c" ]
];
\ No newline at end of file
diff --git a/files.html b/files.html
index 1470a7b5..b6842abc 100644
--- a/files.html
+++ b/files.html
@@ -139,10 +139,12 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
kohonen_som_trace.c | Kohonen self organizing map (data tracing) |
▼ misc | |
cantor_set.c | Program to generate Cantor ternary set |
- collatz.c | Implementation of Collatz' conjecture |
- factorial_large_number.c | Compute factorial of arbitrarily large numbers by storing individual digits in a byte |
- fibonacci_fast.c | Compute \(m^{mth}\) Fibonacci number using the formulae: |
- sudoku_solver.c | Sudoku Solver using recursive implementation of brute-force algorithm |
+ cartesian_to_polar.c | Function to convert a Cartesian co-ordinate to polar form |
+ collatz.c | Implementation of Collatz' conjecture |
+ factorial_large_number.c | Compute factorial of arbitrarily large numbers by storing individual digits in a byte |
+ fibonacci_fast.c | Compute \(m^{mth}\) Fibonacci number using the formulae: |
+ sudoku_solver.c | Sudoku Solver using recursive implementation of brute-force algorithm |
+ union_find.c | Union find algorithm |
▼ numerical_methods | |
durand_kerner_roots.c | Compute all possible approximate roots of any given polynomial using Durand Kerner algorithm |
lu_decompose.c | LU decomposition of a square matrix |
@@ -211,11 +213,12 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
sol2.c | Problem 9 solution |
▼ searching | |
binary_search.c | Program to perform binary search of a target value in a given sorted array |
- modified_binary_search.c | Modified binary search algorithm |
- ▼ sorting | |
- bead_sort.c | Sorting of array list using bead sort |
- merge_sort.c | Implementation of merge sort algorithm |
- shell_sort2.c | Shell sort algorithm implementation |
+ jump_search.c | Implementation of jump search algorithm |
+ modified_binary_search.c | Modified binary search algorithm |
+ ▼ sorting | |
+ bead_sort.c | Sorting of array list using bead sort |
+ merge_sort.c | Implementation of merge sort algorithm |
+ shell_sort2.c | Shell sort algorithm implementation |
diff --git a/globals.html b/globals.html
index 2a782578..51a94562 100644
--- a/globals.html
+++ b/globals.html
@@ -98,9 +98,10 @@ $(document).ready(function(){initNavTree('globals.html',''); initResizable(); })
, kohonen_som_trace.c
_USE_MATH_DEFINES
-: kohonen_som_topology.c
+: kohonen_som_trace.c
+, kohonen_som_topology.c
, spirograph.c
-, kohonen_som_trace.c
+, cartesian_to_polar.c
diff --git a/globals_defs.html b/globals_defs.html
index 0e1b8e66..98d27315 100644
--- a/globals_defs.html
+++ b/globals_defs.html
@@ -95,6 +95,7 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
: spirograph.c
, kohonen_som_topology.c
, kohonen_som_trace.c
+, cartesian_to_polar.c
ACCURACY
: durand_kerner_roots.c
@@ -137,8 +138,12 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
MAX_NAMES
: sol1.c
+MAX_SIZE
+: union_find.c
+
min
-: kohonen_som_topology.c
+: jump_search.c
+, kohonen_som_topology.c
, kohonen_som_trace.c
MOD
diff --git a/globals_dup.js b/globals_dup.js
index e44d9530..0e9e2208 100644
--- a/globals_dup.js
+++ b/globals_dup.js
@@ -9,6 +9,7 @@ var globals_dup =
[ "f", "globals_f.html", null ],
[ "g", "globals_g.html", null ],
[ "i", "globals_i.html", null ],
+ [ "j", "globals_j.html", null ],
[ "k", "globals_k.html", null ],
[ "l", "globals_l.html", null ],
[ "m", "globals_m.html", null ],
diff --git a/globals_f.html b/globals_f.html
index 5b8133dc..7dd5a135 100644
--- a/globals_f.html
+++ b/globals_f.html
@@ -96,6 +96,9 @@ $(document).ready(function(){initNavTree('globals_f.html',''); initResizable();
fib()
: fibonacci_fast.c
+find()
+: union_find.c
+
forward_euler()
: ode_forward_euler.c
diff --git a/globals_func.html b/globals_func.html
index 87415188..33d017c8 100644
--- a/globals_func.html
+++ b/globals_func.html
@@ -98,499 +98,6 @@ $(document).ready(function(){initNavTree('globals_func.html',''); initResizable(
, kohonen_som_trace.c
-
-
-- a -
-
-
-- b -
-
-
-- c -
-
-
-- d -
-
-
-- e -
-
-
-- f -
-
-
-- g -
-
-
-- i -
-
-
-- k -
-
-
-- l -
-
-
-- m -
-- main()
-: c_atoi_str_to_integer.c
-, threaded_binary_trees.c
-, spirograph.c
-, adaline_learning.c
-, kohonen_som_topology.c
-, kohonen_som_trace.c
-, cantor_set.c
-, collatz.c
-, factorial_large_number.c
-, fibonacci_fast.c
-, sudoku_solver.c
-, durand_kerner_roots.c
-, lu_decompose.c
-, newton_raphson_root.c
-, ode_forward_euler.c
-, ode_midpoint_euler.c
-, ode_semi_implicit_euler.c
-, qr_decomposition.c
-, qr_eigen_values.c
-, realtime_stats.c
-, sol1.c
-, sol2.c
-, sol3.c
-, sol4.c
-, sol1.c
-, sol2.c
-, sol1.c
-, so1.c
-, sol1.c
-, sol2.c
-, sol1.c
-, sol2.c
-, sol.c
-, sol1.c
-, sol.c
-, sol1.c
-, sol2.c
-, sol1.c
-, sol2.c
-, binary_search.c
-, modified_binary_search.c
-, bead_sort.c
-, merge_sort.c
-, shell_sort2.c
-
-- mat_mul()
-: qr_eigen_values.c
-
-- merge()
-: merge_sort.c
-
-- merge_sort()
-: merge_sort.c
-
-- midpoint_euler()
-: ode_midpoint_euler.c
-
-- midpoint_euler_step()
-: ode_midpoint_euler.c
-
-- modifiedBinarySearch()
-: modified_binary_search.c
-
-- multiply()
-: factorial_large_number.c
-
-
-
-
-- n -
-
-
-- o -
-
-
-- p -
-
-
-- q -
-
-
-- r -
-- remove_digits()
-: sol1.c
-
-
-
-
-- s -
-
-
-- t -
-
-
-- v -
diff --git a/globals_func.js b/globals_func.js
new file mode 100644
index 00000000..9c05c537
--- /dev/null
+++ b/globals_func.js
@@ -0,0 +1,24 @@
+var globals_func =
+[
+ [ "_", "globals_func.html", null ],
+ [ "a", "globals_func_a.html", null ],
+ [ "b", "globals_func_b.html", null ],
+ [ "c", "globals_func_c.html", null ],
+ [ "d", "globals_func_d.html", null ],
+ [ "e", "globals_func_e.html", null ],
+ [ "f", "globals_func_f.html", null ],
+ [ "g", "globals_func_g.html", null ],
+ [ "i", "globals_func_i.html", null ],
+ [ "j", "globals_func_j.html", null ],
+ [ "k", "globals_func_k.html", null ],
+ [ "l", "globals_func_l.html", null ],
+ [ "m", "globals_func_m.html", null ],
+ [ "n", "globals_func_n.html", null ],
+ [ "o", "globals_func_o.html", null ],
+ [ "p", "globals_func_p.html", null ],
+ [ "q", "globals_func_q.html", null ],
+ [ "r", "globals_func_r.html", null ],
+ [ "s", "globals_func_s.html", null ],
+ [ "t", "globals_func_t.html", null ],
+ [ "v", "globals_func_v.html", null ]
+];
\ No newline at end of file
diff --git a/globals_func_a.html b/globals_func_a.html
new file mode 100644
index 00000000..ed6dfcc7
--- /dev/null
+++ b/globals_func_a.html
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_b.html b/globals_func_b.html
new file mode 100644
index 00000000..be9d7e3f
--- /dev/null
+++ b/globals_func_b.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_c.html b/globals_func_c.html
new file mode 100644
index 00000000..86e0a12d
--- /dev/null
+++ b/globals_func_c.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_d.html b/globals_func_d.html
new file mode 100644
index 00000000..bbdf5d65
--- /dev/null
+++ b/globals_func_d.html
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_e.html b/globals_func_e.html
new file mode 100644
index 00000000..62834daa
--- /dev/null
+++ b/globals_func_e.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_f.html b/globals_func_f.html
new file mode 100644
index 00000000..19847b3b
--- /dev/null
+++ b/globals_func_f.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_g.html b/globals_func_g.html
new file mode 100644
index 00000000..723a3b5a
--- /dev/null
+++ b/globals_func_g.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_i.html b/globals_func_i.html
new file mode 100644
index 00000000..c17e2cdf
--- /dev/null
+++ b/globals_func_i.html
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_j.html b/globals_func_j.html
new file mode 100644
index 00000000..9e837f87
--- /dev/null
+++ b/globals_func_j.html
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_k.html b/globals_func_k.html
new file mode 100644
index 00000000..b5046dcc
--- /dev/null
+++ b/globals_func_k.html
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_l.html b/globals_func_l.html
new file mode 100644
index 00000000..8c9f4823
--- /dev/null
+++ b/globals_func_l.html
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_m.html b/globals_func_m.html
new file mode 100644
index 00000000..73da8c82
--- /dev/null
+++ b/globals_func_m.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- m -
+- main()
+: c_atoi_str_to_integer.c
+, threaded_binary_trees.c
+, adaline_learning.c
+, cartesian_to_polar.c
+, newton_raphson_root.c
+, sol1.c
+, ode_forward_euler.c
+, shell_sort2.c
+, merge_sort.c
+, bead_sort.c
+, modified_binary_search.c
+, jump_search.c
+, binary_search.c
+, sol2.c
+, sol1.c
+, sol2.c
+, sol1.c
+, sol.c
+, sol1.c
+, sol.c
+, sol2.c
+, sol1.c
+, sol2.c
+, sol1.c
+, so1.c
+, collatz.c
+, ode_midpoint_euler.c
+, sol1.c
+, sol2.c
+, sol1.c
+, sol4.c
+, sol3.c
+, sol2.c
+, sol1.c
+, realtime_stats.c
+, qr_eigen_values.c
+, qr_decomposition.c
+, ode_semi_implicit_euler.c
+, kohonen_som_topology.c
+, factorial_large_number.c
+, fibonacci_fast.c
+, lu_decompose.c
+, durand_kerner_roots.c
+, union_find.c
+, sudoku_solver.c
+, spirograph.c
+, kohonen_som_trace.c
+, cantor_set.c
+
+- mat_mul()
+: qr_eigen_values.c
+
+- merge()
+: merge_sort.c
+
+- merge_sort()
+: merge_sort.c
+
+- midpoint_euler()
+: ode_midpoint_euler.c
+
+- midpoint_euler_step()
+: ode_midpoint_euler.c
+
+- modifiedBinarySearch()
+: modified_binary_search.c
+
+- multiply()
+: factorial_large_number.c
+
+
+
+
+
+
+
+
diff --git a/globals_func_n.html b/globals_func_n.html
new file mode 100644
index 00000000..872d80c8
--- /dev/null
+++ b/globals_func_n.html
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_o.html b/globals_func_o.html
new file mode 100644
index 00000000..fb6b0f07
--- /dev/null
+++ b/globals_func_o.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_p.html b/globals_func_p.html
new file mode 100644
index 00000000..c7e945a7
--- /dev/null
+++ b/globals_func_p.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_q.html b/globals_func_q.html
new file mode 100644
index 00000000..c924277a
--- /dev/null
+++ b/globals_func_q.html
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_r.html b/globals_func_r.html
new file mode 100644
index 00000000..8eb9499c
--- /dev/null
+++ b/globals_func_r.html
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- r -
+- remove_digits()
+: sol1.c
+
+
+
+
+
+
+
+
diff --git a/globals_func_s.html b/globals_func_s.html
new file mode 100644
index 00000000..cbfe6ee2
--- /dev/null
+++ b/globals_func_s.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_func_t.html b/globals_func_t.html
new file mode 100644
index 00000000..138e242d
--- /dev/null
+++ b/globals_func_t.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- t -
+- test()
+: spirograph.c
+, cartesian_to_polar.c
+, jump_search.c
+, binary_search.c
+
+- test1()
+: qr_eigen_values.c
+, adaline_learning.c
+, kohonen_som_topology.c
+, kohonen_som_trace.c
+
+- test2()
+: adaline_learning.c
+, kohonen_som_topology.c
+, kohonen_som_trace.c
+, qr_eigen_values.c
+
+- test3()
+: kohonen_som_trace.c
+, adaline_learning.c
+, kohonen_som_topology.c
+
+- test_2d_classes()
+: kohonen_som_topology.c
+
+- test_3d_classes()
+: kohonen_som_trace.c
+
+- test_3d_classes1()
+: kohonen_som_topology.c
+
+- test_3d_classes2()
+: kohonen_som_topology.c
+
+- test_c_atoi()
+: c_atoi_str_to_integer.c
+
+- test_circle()
+: kohonen_som_trace.c
+
+- test_function()
+: realtime_stats.c
+
+- test_lamniscate()
+: kohonen_som_trace.c
+
+- to_polar()
+: cartesian_to_polar.c
+
+
+
+
+
+
+
+
diff --git a/globals_func_v.html b/globals_func_v.html
new file mode 100644
index 00000000..33d1d038
--- /dev/null
+++ b/globals_func_v.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/globals_g.html b/globals_g.html
index 97a8129f..f82d0851 100644
--- a/globals_g.html
+++ b/globals_g.html
@@ -129,6 +129,9 @@ $(document).ready(function(){initNavTree('globals_g.html',''); initResizable();
get_product()
: sol1.c
+get_rand()
+: cartesian_to_polar.c
+
diff --git a/globals_j.html b/globals_j.html
new file mode 100644
index 00000000..e01753f9
--- /dev/null
+++ b/globals_j.html
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+Algorithms_in_C: Globals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C
+ 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:
+
+
- j -
+
+
+
+
+
+
diff --git a/globals_m.html b/globals_m.html
index 8c3237ae..7f8de91b 100644
--- a/globals_m.html
+++ b/globals_m.html
@@ -97,26 +97,29 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
: c_atoi_str_to_integer.c
, threaded_binary_trees.c
, adaline_learning.c
-, collatz.c
-, ode_midpoint_euler.c
+, cartesian_to_polar.c
+, newton_raphson_root.c
+, sol1.c
+, ode_forward_euler.c
, sol1.c
, so1.c
-, ode_semi_implicit_euler.c
+, collatz.c
+, ode_midpoint_euler.c
, sol1.c
+, ode_semi_implicit_euler.c
+, sol1.c
+, kohonen_som_topology.c
, factorial_large_number.c
, qr_decomposition.c
-, sol1.c
-, qr_eigen_values.c
, sol2.c
, sol1.c
-, kohonen_som_topology.c
-, fibonacci_fast.c
-, realtime_stats.c
+, qr_eigen_values.c
, sol1.c
, shell_sort2.c
, merge_sort.c
, bead_sort.c
, modified_binary_search.c
+, jump_search.c
, binary_search.c
, sol2.c
, sol1.c
@@ -124,23 +127,24 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
, sol1.c
, sol.c
, sol1.c
-, sol2.c
, sol.c
+, sol1.c
+, fibonacci_fast.c
+, realtime_stats.c
+, sol2.c
+, sol1.c
+, spirograph.c
+, kohonen_som_trace.c
, sudoku_solver.c
, sol2.c
, sol3.c
-, spirograph.c
-, kohonen_som_trace.c
-, durand_kerner_roots.c
+, union_find.c
, sol4.c
, sol1.c
-, lu_decompose.c
-, sol1.c
-, sol2.c
-, sol1.c
, cantor_set.c
-, newton_raphson_root.c
-, ode_forward_euler.c
+, durand_kerner_roots.c
+, sol2.c
+, lu_decompose.c
mat_mul()
: qr_eigen_values.c
@@ -174,6 +178,9 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
MAX_NAMES
: sol1.c
+MAX_SIZE
+: union_find.c
+
merge()
: merge_sort.c
@@ -187,8 +194,9 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
: ode_midpoint_euler.c
min
-: kohonen_som_trace.c
-, kohonen_som_topology.c
+: kohonen_som_topology.c
+, kohonen_som_trace.c
+, jump_search.c
MOD
: sol1.c
diff --git a/globals_t.html b/globals_t.html
index 87ce4bd8..2457e450 100644
--- a/globals_t.html
+++ b/globals_t.html
@@ -95,23 +95,25 @@ $(document).ready(function(){initNavTree('globals_t.html',''); initResizable();
- t -
- test()
: spirograph.c
+, cartesian_to_polar.c
+, jump_search.c
, binary_search.c
- test1()
-: kohonen_som_topology.c
-, kohonen_som_trace.c
+: qr_eigen_values.c
, adaline_learning.c
-, qr_eigen_values.c
+, kohonen_som_topology.c
+, kohonen_som_trace.c
- test2()
-: kohonen_som_topology.c
+: adaline_learning.c
+, kohonen_som_topology.c
, kohonen_som_trace.c
, qr_eigen_values.c
-, adaline_learning.c
- test3()
-: adaline_learning.c
-, kohonen_som_trace.c
+: kohonen_som_trace.c
+, adaline_learning.c
, kohonen_som_topology.c
- test_2d_classes()
@@ -138,6 +140,9 @@ $(document).ready(function(){initNavTree('globals_t.html',''); initResizable();
- test_lamniscate()
: kohonen_som_trace.c
+- to_polar()
+: cartesian_to_polar.c
+
diff --git a/menudata.js b/menudata.js
index 02d52164..50574e18 100644
--- a/menudata.js
+++ b/menudata.js
@@ -45,6 +45,7 @@ var menudata={children:[
{text:"f",url:"globals_f.html#index_f"},
{text:"g",url:"globals_g.html#index_g"},
{text:"i",url:"globals_i.html#index_i"},
+{text:"j",url:"globals_j.html#index_j"},
{text:"k",url:"globals_k.html#index_k"},
{text:"l",url:"globals_l.html#index_l"},
{text:"m",url:"globals_m.html#index_m"},
@@ -58,25 +59,26 @@ var menudata={children:[
{text:"v",url:"globals_v.html#index_v"}]},
{text:"Functions",url:"globals_func.html",children:[
{text:"_",url:"globals_func.html#index__5F"},
-{text:"a",url:"globals_func.html#index_a"},
-{text:"b",url:"globals_func.html#index_b"},
-{text:"c",url:"globals_func.html#index_c"},
-{text:"d",url:"globals_func.html#index_d"},
-{text:"e",url:"globals_func.html#index_e"},
-{text:"f",url:"globals_func.html#index_f"},
-{text:"g",url:"globals_func.html#index_g"},
-{text:"i",url:"globals_func.html#index_i"},
-{text:"k",url:"globals_func.html#index_k"},
-{text:"l",url:"globals_func.html#index_l"},
-{text:"m",url:"globals_func.html#index_m"},
-{text:"n",url:"globals_func.html#index_n"},
-{text:"o",url:"globals_func.html#index_o"},
-{text:"p",url:"globals_func.html#index_p"},
-{text:"q",url:"globals_func.html#index_q"},
-{text:"r",url:"globals_func.html#index_r"},
-{text:"s",url:"globals_func.html#index_s"},
-{text:"t",url:"globals_func.html#index_t"},
-{text:"v",url:"globals_func.html#index_v"}]},
+{text:"a",url:"globals_func_a.html#index_a"},
+{text:"b",url:"globals_func_b.html#index_b"},
+{text:"c",url:"globals_func_c.html#index_c"},
+{text:"d",url:"globals_func_d.html#index_d"},
+{text:"e",url:"globals_func_e.html#index_e"},
+{text:"f",url:"globals_func_f.html#index_f"},
+{text:"g",url:"globals_func_g.html#index_g"},
+{text:"i",url:"globals_func_i.html#index_i"},
+{text:"j",url:"globals_func_j.html#index_j"},
+{text:"k",url:"globals_func_k.html#index_k"},
+{text:"l",url:"globals_func_l.html#index_l"},
+{text:"m",url:"globals_func_m.html#index_m"},
+{text:"n",url:"globals_func_n.html#index_n"},
+{text:"o",url:"globals_func_o.html#index_o"},
+{text:"p",url:"globals_func_p.html#index_p"},
+{text:"q",url:"globals_func_q.html#index_q"},
+{text:"r",url:"globals_func_r.html#index_r"},
+{text:"s",url:"globals_func_s.html#index_s"},
+{text:"t",url:"globals_func_t.html#index_t"},
+{text:"v",url:"globals_func_v.html#index_v"}]},
{text:"Variables",url:"globals_vars.html"},
{text:"Typedefs",url:"globals_type.html"},
{text:"Macros",url:"globals_defs.html"}]}]}]}
diff --git a/navtreedata.js b/navtreedata.js
index bb62dc53..c3f43fe6 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -74,7 +74,7 @@ var NAVTREE =
[ "File List", "files.html", "files_dup" ],
[ "Globals", "globals.html", [
[ "All", "globals.html", "globals_dup" ],
- [ "Functions", "globals_func.html", null ],
+ [ "Functions", "globals_func.html", "globals_func" ],
[ "Variables", "globals_vars.html", null ],
[ "Typedefs", "globals_type.html", null ],
[ "Macros", "globals_defs.html", null ]
@@ -87,7 +87,7 @@ var NAVTREEINDEX =
[
"annotated.html",
"d5/da1/structnode.html#a1aa632fdf50713d86192a96f8191851b",
-"df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582"
+"de/dac/sudoku__solver_8c.html"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index 77cbf808..bc5f1f0f 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -134,10 +134,10 @@ var NAVTREEINDEX0 =
"d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e":[12,0,5,1,14],
"d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc":[12,0,5,1,16],
"d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018":[12,0,5,1,15],
-"d3/d47/modified__binary__search_8c.html":[12,0,9,1],
-"d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890":[12,0,9,1,0],
-"d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f":[12,0,9,1,2],
-"d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,9,1,1],
+"d3/d47/modified__binary__search_8c.html":[12,0,9,2],
+"d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890":[12,0,9,2,0],
+"d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f":[12,0,9,2,2],
+"d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,9,2,1],
"d3/d5a/struct__large__num.html":[11,0,2],
"d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0":[11,0,2,1],
"d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9":[11,0,2,0],
@@ -174,9 +174,9 @@ var NAVTREEINDEX0 =
"d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be":[12,0,8,17,0,6],
"d4/d83/problem__401_2sol1_8c.html#aca7d5718ab8c38506adb3bef2469b319":[12,0,8,17,0,2],
"d4/d83/problem__401_2sol1_8c.html#adf2a0717e3307419a9d7c52707f5631e":[12,0,8,17,0,1],
-"d4/d99/fibonacci__fast_8c.html":[12,0,6,3],
-"d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,3,1],
-"d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3":[12,0,6,3,0],
+"d4/d99/fibonacci__fast_8c.html":[12,0,6,4],
+"d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,4,1],
+"d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3":[12,0,6,4,0],
"d4/d99/ode__semi__implicit__euler_8c.html":[12,0,7,5],
"d4/d99/ode__semi__implicit__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,7,5,2],
"d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb":[12,0,7,5,5],
@@ -218,8 +218,8 @@ var NAVTREEINDEX0 =
"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[12,0,10,1,3],
"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[12,0,10,2,3],
"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[10,2,7],
-"d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[10,2,0],
"d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[12,0,10,0,0],
+"d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[10,2,0],
"d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[12,0,10,2,1],
"d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[10,2,5],
"d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[12,0,10,1,1],
diff --git a/navtreeindex1.js b/navtreeindex1.js
index e97c2272..d5622747 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -22,33 +22,44 @@ var NAVTREEINDEX1 =
"d5/db4/struct_edge.html#ae746ca841799f776a8add4d6fdfc19e9":[11,0,10,3],
"d5/df4/group__sudoku.html":[10,1],
"d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1":[10,1,3],
-"d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1":[12,0,6,4,3],
+"d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1":[12,0,6,5,3],
"d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f":[10,1,2],
-"d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f":[12,0,6,4,2],
+"d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f":[12,0,6,5,2],
"d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b":[10,1,1],
-"d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b":[12,0,6,4,0],
+"d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b":[12,0,6,5,0],
"d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a":[10,1,4],
-"d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a":[12,0,6,4,4],
+"d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a":[12,0,6,5,4],
"d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1":[10,1,6],
-"d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1":[12,0,6,4,6],
+"d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1":[12,0,6,5,6],
"d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[10,1,5],
-"d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[12,0,6,4,5],
+"d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[12,0,6,5,5],
"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[10,1,7],
-"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[12,0,6,4,7],
+"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[12,0,6,5,7],
"d6/d1b/sol4_8c.html":[12,0,8,0,3],
"d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,8,0,3,0],
-"d6/d3d/factorial__large__number_8c.html":[12,0,6,2],
-"d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,2,4],
-"d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d":[12,0,6,2,1],
-"d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae":[12,0,6,2,3],
-"d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e":[12,0,6,2,5],
-"d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb":[12,0,6,2,6],
-"d6/d3d/factorial__large__number_8c.html#af2869d36c22a2b8f93d3166a84e124b3":[12,0,6,2,2],
+"d6/d2e/cartesian__to__polar_8c.html":[12,0,6,1],
+"d6/d2e/cartesian__to__polar_8c.html#a525335710b53cb064ca56b936120431e":[12,0,6,1,0],
+"d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60":[12,0,6,1,1],
+"d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002":[12,0,6,1,3],
+"d6/d2e/cartesian__to__polar_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,6,1,2],
+"d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70":[12,0,6,1,4],
+"d6/d3d/factorial__large__number_8c.html":[12,0,6,3],
+"d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,3,4],
+"d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d":[12,0,6,3,1],
+"d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae":[12,0,6,3,3],
+"d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e":[12,0,6,3,5],
+"d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb":[12,0,6,3,6],
+"d6/d3d/factorial__large__number_8c.html#af2869d36c22a2b8f93d3166a84e124b3":[12,0,6,3,2],
"d6/d42/structdynamic__array.html":[11,0,9],
"d6/d42/structdynamic__array.html#a79c587474e35f99510ca3018bf700007":[11,0,9,2],
"d6/d42/structdynamic__array.html#a7e3fbd203b3b86401c17dede7a33f781":[11,0,9,1],
"d6/d42/structdynamic__array.html#a9ddb0f64ade5d5e74b7fd091158958e4":[11,0,9,0],
"d6/d48/isogram_8h_source.html":[12,0,2,2,0],
+"d6/d7b/jump__search_8c.html":[12,0,9,1],
+"d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e":[12,0,9,1,0],
+"d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002":[12,0,9,1,3],
+"d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,9,1,2],
+"d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603":[12,0,9,1,1],
"d6/d88/problem__16_2sol1_8c.html":[12,0,8,6,0],
"d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[12,0,8,6,0,0],
"d6/de3/sol3_8c.html":[12,0,8,0,2],
@@ -132,20 +143,20 @@ var NAVTREEINDEX1 =
"da/d2a/group__adaline.html#ga20d3642e0a87f36fdb7bf91b023cd166":[10,0,5,5],
"da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120":[12,0,5,0,5],
"da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120":[10,0,5,6],
-"da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa":[10,0,5,3],
"da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa":[12,0,5,0,2],
-"da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f":[10,0,5,2],
+"da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa":[10,0,5,3],
"da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f":[12,0,5,0,1],
+"da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f":[10,0,5,2],
"da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665":[12,0,5,0,7],
"da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665":[10,0,5,8],
-"da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[10,0,5,4],
"da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[12,0,5,0,3],
+"da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[10,0,5,4],
"da/d2a/group__adaline.html#gab4d49d73dec94c092b7ffadba55fb020":[12,0,5,0,0],
"da/d2a/group__adaline.html#gab4d49d73dec94c092b7ffadba55fb020":[10,0,5,1],
"da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94":[12,0,5,0,6],
"da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94":[10,0,5,7],
-"da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b":[10,0,5,9],
"da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b":[12,0,5,0,9],
+"da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b":[10,0,5,9],
"da/d35/problem__1_2sol1_8c.html":[12,0,8,0,0],
"da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,8,0,0,0],
"da/d38/durand__kerner__roots_8c.html":[12,0,7,0],
@@ -207,8 +218,8 @@ var NAVTREEINDEX1 =
"dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab":[12,0,6,0,4],
"dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d":[12,0,6,0,2],
"dc/d80/cantor__set_8c.html#abf9e6b7e6f15df4b525a2e7705ba3089":[12,0,6,0,3],
-"dc/d80/collatz_8c.html":[12,0,6,1],
-"dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,1,0],
+"dc/d80/collatz_8c.html":[12,0,6,2],
+"dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[12,0,6,2,0],
"dc/de3/hash__set_8h_source.html":[12,0,1,5,0],
"dc/de5/structsubset.html":[11,0,25],
"dc/de5/structsubset.html#a2cc3bbda6f758afb7bf8067eb8f07a10":[11,0,25,1],
@@ -238,16 +249,5 @@ var NAVTREEINDEX1 =
"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[12,0,8,7,0,1],
"dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75":[12,0,8,7,0,0],
"de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html":[3],
-"de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md9":[0],
-"de/dac/sudoku__solver_8c.html":[12,0,6,4],
-"de/dac/sudoku__solver_8c.html#ae1a3968e7947464bee7714f6d43b7002":[12,0,6,4,8],
-"de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,6,4,1],
-"de/dce/structmin__heap.html":[11,0,18],
-"de/dce/structmin__heap.html#a456c6372c103c6d1bb430f581f5d3c71":[11,0,18,2],
-"de/dce/structmin__heap.html#a9fd34546dad4dfd9e6a456936b766123":[11,0,18,0],
-"de/dce/structmin__heap.html#ad960bfacd24fb843208db83f113ebc8f":[11,0,18,1],
-"df/d1a/problem__21_2sol1_8c.html":[12,0,8,10,0],
-"df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[12,0,8,10,0,0],
-"df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93":[12,0,8,10,0,1],
-"df/d3b/binary__search_8c.html":[12,0,9,0]
+"de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md9":[0]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index 79f4805f..17b770bb 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,5 +1,16 @@
var NAVTREEINDEX2 =
{
+"de/dac/sudoku__solver_8c.html":[12,0,6,5],
+"de/dac/sudoku__solver_8c.html#ae1a3968e7947464bee7714f6d43b7002":[12,0,6,5,8],
+"de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,6,5,1],
+"de/dce/structmin__heap.html":[11,0,18],
+"de/dce/structmin__heap.html#a456c6372c103c6d1bb430f581f5d3c71":[11,0,18,2],
+"de/dce/structmin__heap.html#a9fd34546dad4dfd9e6a456936b766123":[11,0,18,0],
+"de/dce/structmin__heap.html#ad960bfacd24fb843208db83f113ebc8f":[11,0,18,1],
+"df/d1a/problem__21_2sol1_8c.html":[12,0,8,10,0],
+"df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[12,0,8,10,0,0],
+"df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93":[12,0,8,10,0,1],
+"df/d3b/binary__search_8c.html":[12,0,9,0],
"df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582":[12,0,9,0,0],
"df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[12,0,9,0,2],
"df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032":[12,0,9,0,1],
@@ -32,6 +43,11 @@ var NAVTREEINDEX2 =
"df/dea/structdata.html":[11,0,7],
"df/dea/structdata.html#a7a7e33023945ddb393dc306c489c4049":[11,0,7,1],
"df/dea/structdata.html#ab1464d70ed28af0a16cdd2ebaa64027c":[11,0,7,0],
+"df/df3/union__find_8c.html":[12,0,6,6],
+"df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe":[12,0,6,6,0],
+"df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86":[12,0,6,6,1],
+"df/df3/union__find_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[12,0,6,6,3],
+"df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a":[12,0,6,6,2],
"dir_0472225043064b54f3dfff9011a9fae0.html":[12,0,1,7,0],
"dir_079e1f799fb08a8a0b98cb030ab15687.html":[12,0,8,13],
"dir_0bc3e2a5baf077fa21dadc079776fcac.html":[12,0,8,7],
@@ -92,24 +108,46 @@ var NAVTREEINDEX2 =
"globals_defs.html":[12,1,4],
"globals_e.html":[12,1,0,5],
"globals_f.html":[12,1,0,6],
+"globals_func.html":[12,1,1,0],
"globals_func.html":[12,1,1],
+"globals_func_a.html":[12,1,1,1],
+"globals_func_b.html":[12,1,1,2],
+"globals_func_c.html":[12,1,1,3],
+"globals_func_d.html":[12,1,1,4],
+"globals_func_e.html":[12,1,1,5],
+"globals_func_f.html":[12,1,1,6],
+"globals_func_g.html":[12,1,1,7],
+"globals_func_i.html":[12,1,1,8],
+"globals_func_j.html":[12,1,1,9],
+"globals_func_k.html":[12,1,1,10],
+"globals_func_l.html":[12,1,1,11],
+"globals_func_m.html":[12,1,1,12],
+"globals_func_n.html":[12,1,1,13],
+"globals_func_o.html":[12,1,1,14],
+"globals_func_p.html":[12,1,1,15],
+"globals_func_q.html":[12,1,1,16],
+"globals_func_r.html":[12,1,1,17],
+"globals_func_s.html":[12,1,1,18],
+"globals_func_t.html":[12,1,1,19],
+"globals_func_v.html":[12,1,1,20],
"globals_g.html":[12,1,0,7],
"globals_i.html":[12,1,0,8],
-"globals_k.html":[12,1,0,9],
-"globals_l.html":[12,1,0,10],
-"globals_m.html":[12,1,0,11],
-"globals_n.html":[12,1,0,12],
-"globals_o.html":[12,1,0,13],
-"globals_p.html":[12,1,0,14],
-"globals_q.html":[12,1,0,15],
-"globals_r.html":[12,1,0,16],
-"globals_s.html":[12,1,0,17],
-"globals_t.html":[12,1,0,18],
+"globals_j.html":[12,1,0,9],
+"globals_k.html":[12,1,0,10],
+"globals_l.html":[12,1,0,11],
+"globals_m.html":[12,1,0,12],
+"globals_n.html":[12,1,0,13],
+"globals_o.html":[12,1,0,14],
+"globals_p.html":[12,1,0,15],
+"globals_q.html":[12,1,0,16],
+"globals_r.html":[12,1,0,17],
+"globals_s.html":[12,1,0,18],
+"globals_t.html":[12,1,0,19],
"globals_type.html":[12,1,3],
-"globals_v.html":[12,1,0,19],
+"globals_v.html":[12,1,0,20],
"globals_vars.html":[12,1,2],
-"index.html":[0],
"index.html":[],
+"index.html":[0],
"index.html#autotoc_md33":[0,0],
"index.html#autotoc_md34":[0,1],
"index.html#autotoc_md35":[0,2],
diff --git a/search/all_0.js b/search/all_0.js
index 5b1b058b..20f0a144 100644
--- a/search/all_0.js
+++ b/search/all_0.js
@@ -4,5 +4,5 @@ var searchData=
['_5fcantor_5fset_1',['_cantor_set',['../d9/dd7/struct__cantor__set.html',1,'']]],
['_5flarge_5fnum_2',['_large_num',['../d3/d5a/struct__large__num.html',1,'']]],
['_5frandom_3',['_random',['../d1/d6b/group__kohonen__2d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_trace.c']]],
- ['_5fuse_5fmath_5fdefines_4',['_USE_MATH_DEFINES',['../d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): spirograph.c'],['../d2/df6/kohonen__som__topology_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_trace.c']]]
+ ['_5fuse_5fmath_5fdefines_4',['_USE_MATH_DEFINES',['../d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): spirograph.c'],['../d2/df6/kohonen__som__topology_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_trace.c'],['../d6/d2e/cartesian__to__polar_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): cartesian_to_polar.c']]]
];
diff --git a/search/all_10.js b/search/all_10.js
index b47f6bcb..853fc85b 100644
--- a/search/all_10.js
+++ b/search/all_10.js
@@ -1,9 +1,14 @@
var searchData=
[
- ['qr_5fdecompose_169',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]],
- ['qr_5fdecompose_2eh_170',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]],
- ['qr_5fdecomposition_2ec_171',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]],
- ['qr_5feigen_5fvalues_2ec_172',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]],
- ['queue_173',['queue',['../d2/d36/structqueue.html',1,'']]],
- ['queuerep_174',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]]
+ ['projecteuler_165',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]],
+ ['pid_166',['pid',['../d0/d43/structpid.html',1,'']]],
+ ['poly_5ffunction_167',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]],
+ ['postorder_5fdisplay_168',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]],
+ ['preorder_5fdisplay_169',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]],
+ ['prev_5fdigit_170',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]],
+ ['print_171',['print',['../dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab',1,'print(CantorSet *head): cantor_set.c'],['../d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1',1,'print(const struct sudoku *a): sudoku_solver.c']]],
+ ['print_5fmatrix_172',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]],
+ ['print_5fnumber_173',['print_number',['../db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319',1,'print_number(uint8_t *number, uint8_t N, int8_t num_digits_to_print): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235',1,'print_number(unsigned char *number, int N): sol1.c']]],
+ ['problem_174',['problem',['../d4/d07/ode__forward__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_semi_implicit_euler.c']]],
+ ['propagate_175',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]]
];
diff --git a/search/all_11.js b/search/all_11.js
index 6cc2958a..78bc0913 100644
--- a/search/all_11.js
+++ b/search/all_11.js
@@ -1,6 +1,9 @@
var searchData=
[
- ['realtime_5fstats_2ec_175',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]],
- ['remove_5fdigits_176',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]],
- ['rlink_177',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]]
+ ['qr_5fdecompose_176',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]],
+ ['qr_5fdecompose_2eh_177',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]],
+ ['qr_5fdecomposition_2ec_178',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]],
+ ['qr_5feigen_5fvalues_2ec_179',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]],
+ ['queue_180',['queue',['../d2/d36/structqueue.html',1,'']]],
+ ['queuerep_181',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]]
];
diff --git a/search/all_12.js b/search/all_12.js
index 80ee83ad..14b79133 100644
--- a/search/all_12.js
+++ b/search/all_12.js
@@ -1,36 +1,6 @@
var searchData=
[
- ['simple_20generic_20stack_178',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
- ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_179',['Sample solutions for <a href="http://exercism.io/">exercism.io</a>',['../d7/db5/md_exercism__r_e_a_d_m_e.html',1,'']]],
- ['save_5f2d_5fdata_180',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]],
- ['save_5fnd_5fdata_181',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]],
- ['save_5fu_5fmatrix_182',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]],
- ['search_183',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'threaded_binary_trees.c']]],
- ['semi_5fimplicit_5feuler_184',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]],
- ['semi_5fimplicit_5feuler_5fstep_185',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]],
- ['shell_5fsort_186',['shell_sort',['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c'],['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c']]],
- ['shell_5fsort2_2ec_187',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]],
- ['show_5fdata_188',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
- ['sigma_189',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
- ['sigma2_190',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
- ['so1_2ec_191',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
- ['sol_2ec_192',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../df/de7/problem__5_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
- ['sol1_2ec_193',['sol1.c',['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)']]],
- ['sol2_2ec_194',['sol2.c',['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)']]],
- ['sol3_2ec_195',['sol3.c',['../d6/de3/sol3_8c.html',1,'']]],
- ['sol4_2ec_196',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
- ['solve_197',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
- ['sorting_20algorithms_198',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
- ['spirograph_199',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
- ['spirograph_2ec_200',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
- ['stack_201',['Stack',['../dd/d10/struct_stack.html',1,'']]],
- ['start_202',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]],
- ['stats_5fcomputer1_203',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
- ['stats_5fcomputer2_204',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
- ['subset_205',['subset',['../dc/de5/structsubset.html',1,'']]],
- ['sudoku_206',['sudoku',['../dc/d18/structsudoku.html',1,'sudoku'],['../d5/df4/group__sudoku.html',1,'(Global Namespace)']]],
- ['sudoku_5fsolver_2ec_207',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]],
- ['sum_5fof_5fdivisors_208',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
- ['sum_5fof_5fprimes_209',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
- ['swap_210',['swap',['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'merge_sort.c']]]
+ ['realtime_5fstats_2ec_182',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]],
+ ['remove_5fdigits_183',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]],
+ ['rlink_184',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]]
];
diff --git a/search/all_13.js b/search/all_13.js
index 5f43b118..1faf3661 100644
--- a/search/all_13.js
+++ b/search/all_13.js
@@ -1,20 +1,36 @@
var searchData=
[
- ['the_20algorithms_20_2d_20c_211',['The Algorithms - C',['../index.html',1,'']]],
- ['t_212',['T',['../d5/d7e/struct_t.html',1,'']]],
- ['test_213',['test',['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): binary_search.c']]],
- ['test1_214',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]],
- ['test2_215',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]],
- ['test3_216',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c']]],
- ['test_5f2d_5fclasses_217',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
- ['test_5f3d_5fclasses_218',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
- ['test_5f3d_5fclasses1_219',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
- ['test_5f3d_5fclasses2_220',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
- ['test_5fc_5fatoi_221',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
- ['test_5fcircle_222',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
- ['test_5ffunction_223',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
- ['test_5flamniscate_224',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]],
- ['threaded_5fbinary_5ftrees_2ec_225',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]],
- ['tnode_226',['tnode',['../d8/d7a/structtnode.html',1,'']]],
- ['trienode_227',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]]
+ ['simple_20generic_20stack_185',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
+ ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_186',['Sample solutions for <a href="http://exercism.io/">exercism.io</a>',['../d7/db5/md_exercism__r_e_a_d_m_e.html',1,'']]],
+ ['save_5f2d_5fdata_187',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]],
+ ['save_5fnd_5fdata_188',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]],
+ ['save_5fu_5fmatrix_189',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]],
+ ['search_190',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'threaded_binary_trees.c']]],
+ ['semi_5fimplicit_5feuler_191',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]],
+ ['semi_5fimplicit_5feuler_5fstep_192',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]],
+ ['shell_5fsort_193',['shell_sort',['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c'],['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c']]],
+ ['shell_5fsort2_2ec_194',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]],
+ ['show_5fdata_195',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
+ ['sigma_196',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
+ ['sigma2_197',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
+ ['so1_2ec_198',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
+ ['sol_2ec_199',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../df/de7/problem__5_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
+ ['sol1_2ec_200',['sol1.c',['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)']]],
+ ['sol2_2ec_201',['sol2.c',['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)']]],
+ ['sol3_2ec_202',['sol3.c',['../d6/de3/sol3_8c.html',1,'']]],
+ ['sol4_2ec_203',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
+ ['solve_204',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
+ ['sorting_20algorithms_205',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
+ ['spirograph_206',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
+ ['spirograph_2ec_207',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
+ ['stack_208',['Stack',['../dd/d10/struct_stack.html',1,'']]],
+ ['start_209',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]],
+ ['stats_5fcomputer1_210',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
+ ['stats_5fcomputer2_211',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
+ ['subset_212',['subset',['../dc/de5/structsubset.html',1,'']]],
+ ['sudoku_213',['sudoku',['../dc/d18/structsudoku.html',1,'sudoku'],['../d5/df4/group__sudoku.html',1,'(Global Namespace)']]],
+ ['sudoku_5fsolver_2ec_214',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]],
+ ['sum_5fof_5fdivisors_215',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
+ ['sum_5fof_5fprimes_216',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
+ ['swap_217',['swap',['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'merge_sort.c']]]
];
diff --git a/search/all_14.js b/search/all_14.js
index 2fa8dd90..3c220fd4 100644
--- a/search/all_14.js
+++ b/search/all_14.js
@@ -1,8 +1,21 @@
var searchData=
[
- ['value_228',['value',['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int']]],
- ['vector_5fdot_229',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]],
- ['vector_5fmag_230',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]],
- ['vector_5fproj_231',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]],
- ['vector_5fsub_232',['vector_sub',['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'qr_decompose.h']]]
+ ['the_20algorithms_20_2d_20c_218',['The Algorithms - C',['../index.html',1,'']]],
+ ['t_219',['T',['../d5/d7e/struct_t.html',1,'']]],
+ ['test_220',['test',['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): binary_search.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): jump_search.c']]],
+ ['test1_221',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]],
+ ['test2_222',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]],
+ ['test3_223',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c']]],
+ ['test_5f2d_5fclasses_224',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
+ ['test_5f3d_5fclasses_225',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
+ ['test_5f3d_5fclasses1_226',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
+ ['test_5f3d_5fclasses2_227',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
+ ['test_5fc_5fatoi_228',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
+ ['test_5fcircle_229',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
+ ['test_5ffunction_230',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
+ ['test_5flamniscate_231',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]],
+ ['threaded_5fbinary_5ftrees_2ec_232',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]],
+ ['tnode_233',['tnode',['../d8/d7a/structtnode.html',1,'']]],
+ ['to_5fpolar_234',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]],
+ ['trienode_235',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]]
];
diff --git a/search/all_15.js b/search/all_15.js
index df9fc80f..69240876 100644
--- a/search/all_15.js
+++ b/search/all_15.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['weights_233',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]],
- ['word_5fcount_5fword_234',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]]
+ ['union_5ffind_2ec_236',['union_find.c',['../df/df3/union__find_8c.html',1,'']]]
];
diff --git a/search/all_16.js b/search/all_16.js
index 0b2b908c..5c2294ab 100644
--- a/search/all_16.js
+++ b/search/all_16.js
@@ -1,5 +1,8 @@
var searchData=
[
- ['weights_214',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]],
- ['word_5fcount_5fword_215',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]]
+ ['value_237',['value',['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int']]],
+ ['vector_5fdot_238',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]],
+ ['vector_5fmag_239',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]],
+ ['vector_5fproj_240',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]],
+ ['vector_5fsub_241',['vector_sub',['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'qr_decompose.h']]]
];
diff --git a/search/all_17.html b/search/all_17.html
new file mode 100644
index 00000000..9685a586
--- /dev/null
+++ b/search/all_17.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
+
+
Searching...
+
No Matches
+
+
+
+
diff --git a/search/all_17.js b/search/all_17.js
new file mode 100644
index 00000000..69457005
--- /dev/null
+++ b/search/all_17.js
@@ -0,0 +1,5 @@
+var searchData=
+[
+ ['weights_242',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]],
+ ['word_5fcount_5fword_243',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]]
+];
diff --git a/search/all_3.js b/search/all_3.js
index 72b1c0be..89fb197c 100644
--- a/search/all_3.js
+++ b/search/all_3.js
@@ -5,13 +5,14 @@ var searchData=
['cantor_5fset_2ec_31',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]],
['cantorset_32',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]],
['carray_33',['CArray',['../d4/d2d/struct_c_array.html',1,'']]],
- ['check_5ftermination_34',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
- ['collatz_35',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
- ['collatz_2ec_36',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]],
- ['compare_37',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
- ['complex_5fstr_38',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]],
- ['count_5fdivisors_39',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
- ['create_5fmatrix_40',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
- ['create_5fnode_41',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]],
- ['code_20style_20convention_42',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]]
+ ['cartesian_5fto_5fpolar_2ec_34',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]],
+ ['check_5ftermination_35',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
+ ['collatz_36',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
+ ['collatz_2ec_37',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]],
+ ['compare_38',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
+ ['complex_5fstr_39',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]],
+ ['count_5fdivisors_40',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
+ ['create_5fmatrix_41',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
+ ['create_5fnode_42',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]],
+ ['code_20style_20convention_43',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]]
];
diff --git a/search/all_4.js b/search/all_4.js
index f2590ed4..7e148e29 100644
--- a/search/all_4.js
+++ b/search/all_4.js
@@ -1,17 +1,17 @@
var searchData=
[
- ['d_5ffunc_43',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]],
- ['data_44',['data',['../df/dea/structdata.html',1,'data'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]],
- ['delete_5fadaline_45',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]],
- ['delete_5fbt_46',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]],
- ['delete_5fnumber_47',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]],
- ['dict_48',['Dict',['../d4/dfe/struct_dict.html',1,'']]],
- ['digits_49',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]],
- ['dim1_50',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]],
- ['dim2_51',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]],
- ['dim3_52',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]],
- ['display_53',['display',['../dc/d2e/lu__decompose_8c.html#a0789beb8d3396582d77b7aedf5e5554a',1,'display(double **A, int N): lu_decompose.c'],['../d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bead_sort.c']]],
- ['durand_5fkerner_5froots_2ec_54',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]],
- ['dynamic_5farray_55',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]],
- ['dictionary_56',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]]
+ ['d_5ffunc_44',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]],
+ ['data_45',['data',['../df/dea/structdata.html',1,'data'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]],
+ ['delete_5fadaline_46',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]],
+ ['delete_5fbt_47',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]],
+ ['delete_5fnumber_48',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]],
+ ['dict_49',['Dict',['../d4/dfe/struct_dict.html',1,'']]],
+ ['digits_50',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]],
+ ['dim1_51',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]],
+ ['dim2_52',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]],
+ ['dim3_53',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]],
+ ['display_54',['display',['../dc/d2e/lu__decompose_8c.html#a0789beb8d3396582d77b7aedf5e5554a',1,'display(double **A, int N): lu_decompose.c'],['../d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bead_sort.c']]],
+ ['durand_5fkerner_5froots_2ec_55',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]],
+ ['dynamic_5farray_56',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]],
+ ['dictionary_57',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/all_5.js b/search/all_5.js
index 19ecb9e6..4eee394d 100644
--- a/search/all_5.js
+++ b/search/all_5.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['edge_57',['Edge',['../d5/db4/struct_edge.html',1,'']]],
- ['eigen_5fvalues_58',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]],
- ['elem_59',['elem',['../d0/d6b/structelem.html',1,'']]],
- ['end_60',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]],
- ['epsilon_61',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]],
- ['eta_62',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]],
- ['exact_5fsolution_63',['exact_solution',['../d4/d07/ode__forward__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_semi_implicit_euler.c']]]
+ ['edge_58',['Edge',['../d5/db4/struct_edge.html',1,'']]],
+ ['eigen_5fvalues_59',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]],
+ ['elem_60',['elem',['../d0/d6b/structelem.html',1,'']]],
+ ['end_61',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]],
+ ['epsilon_62',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]],
+ ['eta_63',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]],
+ ['exact_5fsolution_64',['exact_solution',['../d4/d07/ode__forward__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_semi_implicit_euler.c']]]
];
diff --git a/search/all_6.js b/search/all_6.js
index d15d425a..39213702 100644
--- a/search/all_6.js
+++ b/search/all_6.js
@@ -1,10 +1,11 @@
var searchData=
[
- ['factorial_5flarge_5fnumber_2ec_64',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]],
- ['fib_65',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]],
- ['fibonacci_5ffast_2ec_66',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]],
- ['forward_5feuler_67',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]],
- ['forward_5feuler_5fstep_68',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]],
- ['free_5fmemory_69',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]],
- ['func_70',['func',['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'newton_raphson_root.c']]]
+ ['factorial_5flarge_5fnumber_2ec_65',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]],
+ ['fib_66',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]],
+ ['fibonacci_5ffast_2ec_67',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]],
+ ['find_68',['find',['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'union_find.c']]],
+ ['forward_5feuler_69',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]],
+ ['forward_5feuler_5fstep_70',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]],
+ ['free_5fmemory_71',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]],
+ ['func_72',['func',['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'newton_raphson_root.c']]]
];
diff --git a/search/all_7.js b/search/all_7.js
index 1462c80e..803dee13 100644
--- a/search/all_7.js
+++ b/search/all_7.js
@@ -1,16 +1,17 @@
var searchData=
[
- ['gcd_71',['gcd',['../df/de7/problem__5_2sol_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol.c']]],
- ['get_5fclock_5fdiff_72',['get_clock_diff',['../d2/df6/kohonen__som__topology_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_trace.c']]],
- ['get_5fdigits_73',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]],
- ['get_5fdivisors_74',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]],
- ['get_5fmin_5f2d_75',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]],
- ['get_5fmonth_5fdays_76',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]],
- ['get_5fnext_5fabundant_77',['get_next_abundant',['../d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol2.c']]],
- ['get_5fnext_5funknown_78',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]],
- ['get_5fnumber_79',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]],
- ['get_5fperfect_5fnumber_80',['get_perfect_number',['../d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol2.c']]],
- ['get_5fproduct_81',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]],
- ['graph_82',['Graph',['../d4/dd4/struct_graph.html',1,'']]],
- ['graphrep_83',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]]
+ ['gcd_73',['gcd',['../df/de7/problem__5_2sol_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol.c']]],
+ ['get_5fclock_5fdiff_74',['get_clock_diff',['../d2/df6/kohonen__som__topology_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_trace.c']]],
+ ['get_5fdigits_75',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]],
+ ['get_5fdivisors_76',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]],
+ ['get_5fmin_5f2d_77',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]],
+ ['get_5fmonth_5fdays_78',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]],
+ ['get_5fnext_5fabundant_79',['get_next_abundant',['../d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol2.c']]],
+ ['get_5fnext_5funknown_80',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]],
+ ['get_5fnumber_81',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]],
+ ['get_5fperfect_5fnumber_82',['get_perfect_number',['../d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol2.c']]],
+ ['get_5fproduct_83',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]],
+ ['get_5frand_84',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]],
+ ['graph_85',['Graph',['../d4/dd4/struct_graph.html',1,'']]],
+ ['graphrep_86',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]]
];
diff --git a/search/all_8.js b/search/all_8.js
index cb9d1ae0..131a86d6 100644
--- a/search/all_8.js
+++ b/search/all_8.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['hash_5fset_5ft_84',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]],
- ['hash_20algorithms_85',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]]
+ ['hash_5fset_5ft_87',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]],
+ ['hash_20algorithms_88',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/all_9.js b/search/all_9.js
index 5eb02af9..80dce75e 100644
--- a/search/all_9.js
+++ b/search/all_9.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['inorder_5fdisplay_86',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
- ['insert_5fbt_87',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
- ['is_5fabundant_88',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N): sol2.c']]],
- ['is_5fin_89',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
- ['is_5fleap_5fyear_90',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
- ['is_5fpalindromic_91',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
- ['is_5fprime_92',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
- ['is_5fsum_5fof_5fabundant_93',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol2.c']]],
- ['isprime_94',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]]
+ ['inorder_5fdisplay_89',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
+ ['insert_5fbt_90',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
+ ['is_5fabundant_91',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N): sol2.c']]],
+ ['is_5fin_92',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
+ ['is_5fleap_5fyear_93',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
+ ['is_5fpalindromic_94',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
+ ['is_5fprime_95',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
+ ['is_5fsum_5fof_5fabundant_96',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol2.c']]],
+ ['isprime_97',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]]
];
diff --git a/search/all_a.js b/search/all_a.js
index 63a12cb2..3aebed8c 100644
--- a/search/all_a.js
+++ b/search/all_a.js
@@ -1,13 +1,6 @@
var searchData=
[
- ['kohonen_20som_20trace_2fchain_20algorithm_95',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]],
- ['kohonen_20som_20topology_20algorithm_96',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]],
- ['kohonen_5farray_5f3d_97',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]],
- ['kohonen_5fdata_5f3d_98',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]],
- ['kohonen_5fget_5fmin_5f1d_99',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]],
- ['kohonen_5fsom_100',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]],
- ['kohonen_5fsom_5ftopology_2ec_101',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]],
- ['kohonen_5fsom_5ftrace_2ec_102',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]],
- ['kohonen_5fsom_5ftracer_103',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]],
- ['kohonen_5fupdate_5fweights_104',['kohonen_update_weights',['../d1/d6b/group__kohonen__2d.html#ga83abb572c60d202e100595a989dfe123',1,'kohonen_update_weights(const double *X, struct kohonen_array_3d *W, double **D, int num_out, int num_features, double alpha, int R): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gae334493a0917a24736fe5ba82aa6f81f',1,'kohonen_update_weights(double const *x, double *const *W, double *D, int num_out, int num_features, double alpha, int R): kohonen_som_trace.c']]]
+ ['join_98',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]],
+ ['jump_5fsearch_99',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]],
+ ['jump_5fsearch_2ec_100',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]]
];
diff --git a/search/all_b.js b/search/all_b.js
index 8aadc5c3..ddf24f9c 100644
--- a/search/all_b.js
+++ b/search/all_b.js
@@ -1,13 +1,13 @@
var searchData=
[
- ['l_105',['L',['../df/db3/struct_l.html',1,'']]],
- ['large_5fnum_106',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]],
- ['lazy_5fsort_107',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
- ['lcm_108',['lcm',['../df/de7/problem__5_2sol_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol.c']]],
- ['lims_109',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]],
- ['llink_110',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]],
- ['lu_5fdecompose_2ec_111',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]],
- ['lu_5fdecomposition_112',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]],
- ['list_20of_20all_20files_113',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
- ['leetcode_114',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]]
+ ['kohonen_20som_20trace_2fchain_20algorithm_101',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]],
+ ['kohonen_20som_20topology_20algorithm_102',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]],
+ ['kohonen_5farray_5f3d_103',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]],
+ ['kohonen_5fdata_5f3d_104',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]],
+ ['kohonen_5fget_5fmin_5f1d_105',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]],
+ ['kohonen_5fsom_106',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]],
+ ['kohonen_5fsom_5ftopology_2ec_107',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]],
+ ['kohonen_5fsom_5ftrace_2ec_108',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]],
+ ['kohonen_5fsom_5ftracer_109',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]],
+ ['kohonen_5fupdate_5fweights_110',['kohonen_update_weights',['../d1/d6b/group__kohonen__2d.html#ga83abb572c60d202e100595a989dfe123',1,'kohonen_update_weights(const double *X, struct kohonen_array_3d *W, double **D, int num_out, int num_features, double alpha, int R): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gae334493a0917a24736fe5ba82aa6f81f',1,'kohonen_update_weights(double const *x, double *const *W, double *D, int num_out, int num_features, double alpha, int R): kohonen_som_trace.c']]]
];
diff --git a/search/all_c.js b/search/all_c.js
index 1a794acf..65c12e68 100644
--- a/search/all_c.js
+++ b/search/all_c.js
@@ -1,27 +1,13 @@
var searchData=
[
- ['machine_20learning_20algorithms_115',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]],
- ['main_116',['main',['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_trace.c'],['../dc/d80/cantor__set_8c.html#abf9e6b7e6f15df4b525a2e7705ba3089',1,'main(int argc, char const *argv[]): cantor_set.c'],['../dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): collatz.c'],['../d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): factorial_large_number.c'],['../d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): fibonacci_fast.c'],['../de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sudoku_solver.c'],['../da/d38/durand__kerner__roots_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): durand_kerner_roots.c'],['../dc/d2e/lu__decompose_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): lu_decompose.c'],['../dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): newton_raphson_root.c'],['../d4/d07/ode__forward__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_semi_implicit_euler.c'],['../d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): qr_decomposition.c'],['../d7/d50/qr__eigen__values_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): qr_eigen_values.c'],['../dc/d47/realtime__stats_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): realtime_stats.c'],['../da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d6/de3/sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol3.c'],['../d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol4.c'],['../d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): so1.c'],['../db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol2.c'],['../d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/de7/problem__5_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): binary_search.c'],['../d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): modified_binary_search.c'],['../d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bead_sort.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]],
- ['mat_5fmul_117',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]],
- ['max_118',['max',['../d1/d6b/group__kohonen__2d.html#gaffe776513b24d84b39af8ab0930fef7f',1,'max(): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gaffe776513b24d84b39af8ab0930fef7f',1,'max(): kohonen_som_trace.c']]],
- ['max_5fadaline_5fiter_119',['MAX_ADALINE_ITER',['../da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f',1,'adaline_learning.c']]],
- ['max_5fdeno_120',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]],
- ['max_5fdigits_121',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]],
- ['max_5fheap_122',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]],
- ['max_5fl_123',['MAX_L',['../d4/d83/problem__401_2sol1_8c.html#adf2a0717e3307419a9d7c52707f5631e',1,'sol1.c']]],
- ['max_5flen_124',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]],
- ['max_5fn_125',['MAX_N',['../d7/ddb/problem__23_2sol1_8c.html#a337e545af040d754dc012b42523ee1ee',1,'MAX_N(): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a8c7ddb39906f281b801f2cd58d416c2b',1,'MAX_N(): sol2.c']]],
- ['max_5fname_5flen_126',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]],
- ['max_5fnames_127',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]],
- ['merge_128',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]],
- ['merge_5fsort_129',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]],
- ['merge_5fsort_2ec_130',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]],
- ['midpoint_5feuler_131',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]],
- ['midpoint_5feuler_5fstep_132',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]],
- ['min_133',['min',['../d1/d6b/group__kohonen__2d.html#gac6afabdc09a49a433ee19d8a9486056d',1,'min(): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gac6afabdc09a49a433ee19d8a9486056d',1,'min(): kohonen_som_trace.c']]],
- ['min_5fheap_134',['min_heap',['../de/dce/structmin__heap.html',1,'']]],
- ['mod_135',['MOD',['../d4/d83/problem__401_2sol1_8c.html#aca7d5718ab8c38506adb3bef2469b319',1,'sol1.c']]],
- ['modified_5fbinary_5fsearch_2ec_136',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]],
- ['modifiedbinarysearch_137',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]],
- ['multiply_138',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]]
+ ['l_111',['L',['../df/db3/struct_l.html',1,'']]],
+ ['large_5fnum_112',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]],
+ ['lazy_5fsort_113',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
+ ['lcm_114',['lcm',['../df/de7/problem__5_2sol_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol.c']]],
+ ['lims_115',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]],
+ ['llink_116',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]],
+ ['lu_5fdecompose_2ec_117',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]],
+ ['lu_5fdecomposition_118',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]],
+ ['list_20of_20all_20files_119',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
+ ['leetcode_120',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/all_d.js b/search/all_d.js
index 7bad2a6e..2630d0da 100644
--- a/search/all_d.js
+++ b/search/all_d.js
@@ -1,14 +1,28 @@
var searchData=
[
- ['n_139',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku::N()'],['../db/d01/problem__13_2sol1_8c.html#a0240ac851181b84ac374872dc5434ee4',1,'N(): sol1.c']]],
- ['n2_140',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku::N2()'],['../db/d01/problem__13_2sol1_8c.html#acd864640121c7df2c19f61f7baa507e4',1,'N2(): sol1.c']]],
- ['new_5fadaline_141',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]],
- ['new_5fnumber_142',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]],
- ['newton_5fraphson_5froot_2ec_143',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]],
- ['next_144',['next',['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set']]],
- ['next_5fdigit_145',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
- ['node_146',['Node',['../db/d8b/struct_node.html',1,'Node'],['../d5/da1/structnode.html',1,'node'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]],
- ['num_5fdigits_147',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
- ['num_5fweights_148',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]],
- ['number_5fof_5fpaths_149',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
+ ['machine_20learning_20algorithms_121',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]],
+ ['main_122',['main',['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_trace.c'],['../dc/d80/cantor__set_8c.html#abf9e6b7e6f15df4b525a2e7705ba3089',1,'main(int argc, char const *argv[]): cantor_set.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): cartesian_to_polar.c'],['../dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): collatz.c'],['../d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): factorial_large_number.c'],['../d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): fibonacci_fast.c'],['../de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sudoku_solver.c'],['../df/df3/union__find_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): union_find.c'],['../da/d38/durand__kerner__roots_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): durand_kerner_roots.c'],['../dc/d2e/lu__decompose_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): lu_decompose.c'],['../dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): newton_raphson_root.c'],['../d4/d07/ode__forward__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_semi_implicit_euler.c'],['../d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): qr_decomposition.c'],['../d7/d50/qr__eigen__values_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): qr_eigen_values.c'],['../dc/d47/realtime__stats_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): realtime_stats.c'],['../da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d6/de3/sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol3.c'],['../d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol4.c'],['../d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): so1.c'],['../db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol2.c'],['../d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/de7/problem__5_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): binary_search.c'],['../d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): jump_search.c'],['../d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): modified_binary_search.c'],['../d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bead_sort.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]],
+ ['mat_5fmul_123',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]],
+ ['max_124',['max',['../d1/d6b/group__kohonen__2d.html#gaffe776513b24d84b39af8ab0930fef7f',1,'max(): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gaffe776513b24d84b39af8ab0930fef7f',1,'max(): kohonen_som_trace.c']]],
+ ['max_5fadaline_5fiter_125',['MAX_ADALINE_ITER',['../da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f',1,'adaline_learning.c']]],
+ ['max_5fdeno_126',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]],
+ ['max_5fdigits_127',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]],
+ ['max_5fheap_128',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]],
+ ['max_5fl_129',['MAX_L',['../d4/d83/problem__401_2sol1_8c.html#adf2a0717e3307419a9d7c52707f5631e',1,'sol1.c']]],
+ ['max_5flen_130',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]],
+ ['max_5fn_131',['MAX_N',['../d7/ddb/problem__23_2sol1_8c.html#a337e545af040d754dc012b42523ee1ee',1,'MAX_N(): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a8c7ddb39906f281b801f2cd58d416c2b',1,'MAX_N(): sol2.c']]],
+ ['max_5fname_5flen_132',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]],
+ ['max_5fnames_133',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]],
+ ['max_5fsize_134',['MAX_SIZE',['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'union_find.c']]],
+ ['merge_135',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]],
+ ['merge_5fsort_136',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]],
+ ['merge_5fsort_2ec_137',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]],
+ ['midpoint_5feuler_138',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]],
+ ['midpoint_5feuler_5fstep_139',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]],
+ ['min_140',['min',['../d1/d6b/group__kohonen__2d.html#gac6afabdc09a49a433ee19d8a9486056d',1,'min(): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gac6afabdc09a49a433ee19d8a9486056d',1,'min(): kohonen_som_trace.c'],['../d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e',1,'min(): jump_search.c']]],
+ ['min_5fheap_141',['min_heap',['../de/dce/structmin__heap.html',1,'']]],
+ ['mod_142',['MOD',['../d4/d83/problem__401_2sol1_8c.html#aca7d5718ab8c38506adb3bef2469b319',1,'sol1.c']]],
+ ['modified_5fbinary_5fsearch_2ec_143',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]],
+ ['modifiedbinarysearch_144',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]],
+ ['multiply_145',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]]
];
diff --git a/search/all_e.js b/search/all_e.js
index 8c288780..1067c0a7 100644
--- a/search/all_e.js
+++ b/search/all_e.js
@@ -1,11 +1,14 @@
var searchData=
[
- ['ode_5fforward_5feuler_2ec_150',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]],
- ['ode_5fmidpoint_5feuler_2ec_151',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]],
- ['ode_5fsemi_5fimplicit_5feuler_2ec_152',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]],
- ['ok_153',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]],
- ['okbox_154',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]],
- ['okcol_155',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]],
- ['okrow_156',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]],
- ['order_157',['order',['../d4/d07/ode__forward__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_semi_implicit_euler.c']]]
+ ['n_146',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku::N()'],['../db/d01/problem__13_2sol1_8c.html#a0240ac851181b84ac374872dc5434ee4',1,'N(): sol1.c']]],
+ ['n2_147',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku::N2()'],['../db/d01/problem__13_2sol1_8c.html#acd864640121c7df2c19f61f7baa507e4',1,'N2(): sol1.c']]],
+ ['new_5fadaline_148',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]],
+ ['new_5fnumber_149',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]],
+ ['newton_5fraphson_5froot_2ec_150',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]],
+ ['next_151',['next',['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set']]],
+ ['next_5fdigit_152',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
+ ['node_153',['Node',['../db/d8b/struct_node.html',1,'Node'],['../d5/da1/structnode.html',1,'node'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]],
+ ['num_5fdigits_154',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
+ ['num_5fweights_155',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]],
+ ['number_5fof_5fpaths_156',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
];
diff --git a/search/all_f.js b/search/all_f.js
index 36cc186c..c8d58f7a 100644
--- a/search/all_f.js
+++ b/search/all_f.js
@@ -1,14 +1,11 @@
var searchData=
[
- ['projecteuler_158',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]],
- ['pid_159',['pid',['../d0/d43/structpid.html',1,'']]],
- ['poly_5ffunction_160',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]],
- ['postorder_5fdisplay_161',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]],
- ['preorder_5fdisplay_162',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]],
- ['prev_5fdigit_163',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]],
- ['print_164',['print',['../dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab',1,'print(CantorSet *head): cantor_set.c'],['../d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1',1,'print(const struct sudoku *a): sudoku_solver.c']]],
- ['print_5fmatrix_165',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]],
- ['print_5fnumber_166',['print_number',['../db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319',1,'print_number(uint8_t *number, uint8_t N, int8_t num_digits_to_print): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235',1,'print_number(unsigned char *number, int N): sol1.c']]],
- ['problem_167',['problem',['../d4/d07/ode__forward__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_semi_implicit_euler.c']]],
- ['propagate_168',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]]
+ ['ode_5fforward_5feuler_2ec_157',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]],
+ ['ode_5fmidpoint_5feuler_2ec_158',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]],
+ ['ode_5fsemi_5fimplicit_5feuler_2ec_159',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]],
+ ['ok_160',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]],
+ ['okbox_161',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]],
+ ['okcol_162',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]],
+ ['okrow_163',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]],
+ ['order_164',['order',['../d4/d07/ode__forward__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_semi_implicit_euler.c']]]
];
diff --git a/search/classes_0.js b/search/classes_0.js
index fedd19a1..9cdb78b2 100644
--- a/search/classes_0.js
+++ b/search/classes_0.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['_5fbig_5fint_235',['_big_int',['../dc/d77/struct__big__int.html',1,'']]],
- ['_5fcantor_5fset_236',['_cantor_set',['../d9/dd7/struct__cantor__set.html',1,'']]],
- ['_5flarge_5fnum_237',['_large_num',['../d3/d5a/struct__large__num.html',1,'']]]
+ ['_5fbig_5fint_244',['_big_int',['../dc/d77/struct__big__int.html',1,'']]],
+ ['_5fcantor_5fset_245',['_cantor_set',['../d9/dd7/struct__cantor__set.html',1,'']]],
+ ['_5flarge_5fnum_246',['_large_num',['../d3/d5a/struct__large__num.html',1,'']]]
];
diff --git a/search/classes_1.js b/search/classes_1.js
index 2b2a663c..2f123a06 100644
--- a/search/classes_1.js
+++ b/search/classes_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['adaline_238',['adaline',['../d2/daa/structadaline.html',1,'']]],
- ['avlnode_239',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]]
+ ['adaline_247',['adaline',['../d2/daa/structadaline.html',1,'']]],
+ ['avlnode_248',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]]
];
diff --git a/search/classes_10.js b/search/classes_10.js
index ba6ca76e..93ed79b7 100644
--- a/search/classes_10.js
+++ b/search/classes_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['word_5fcount_5fword_264',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]]
+ ['word_5fcount_5fword_273',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]]
];
diff --git a/search/classes_2.js b/search/classes_2.js
index 476da3d8..3f366b66 100644
--- a/search/classes_2.js
+++ b/search/classes_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['bstiterator_240',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]]
+ ['bstiterator_249',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]]
];
diff --git a/search/classes_3.js b/search/classes_3.js
index 14e7c413..1ad468f4 100644
--- a/search/classes_3.js
+++ b/search/classes_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['carray_241',['CArray',['../d4/d2d/struct_c_array.html',1,'']]]
+ ['carray_250',['CArray',['../d4/d2d/struct_c_array.html',1,'']]]
];
diff --git a/search/classes_4.js b/search/classes_4.js
index aea5dbc7..4edfa6dc 100644
--- a/search/classes_4.js
+++ b/search/classes_4.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['data_242',['data',['../df/dea/structdata.html',1,'']]],
- ['dict_243',['Dict',['../d4/dfe/struct_dict.html',1,'']]],
- ['dynamic_5farray_244',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]]
+ ['data_251',['data',['../df/dea/structdata.html',1,'']]],
+ ['dict_252',['Dict',['../d4/dfe/struct_dict.html',1,'']]],
+ ['dynamic_5farray_253',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]]
];
diff --git a/search/classes_5.js b/search/classes_5.js
index 6b96e699..60f6de26 100644
--- a/search/classes_5.js
+++ b/search/classes_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['edge_245',['Edge',['../d5/db4/struct_edge.html',1,'']]],
- ['elem_246',['elem',['../d0/d6b/structelem.html',1,'']]]
+ ['edge_254',['Edge',['../d5/db4/struct_edge.html',1,'']]],
+ ['elem_255',['elem',['../d0/d6b/structelem.html',1,'']]]
];
diff --git a/search/classes_6.js b/search/classes_6.js
index bbff34a7..64c94d29 100644
--- a/search/classes_6.js
+++ b/search/classes_6.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['graph_247',['Graph',['../d4/dd4/struct_graph.html',1,'']]],
- ['graphrep_248',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]]
+ ['graph_256',['Graph',['../d4/dd4/struct_graph.html',1,'']]],
+ ['graphrep_257',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]]
];
diff --git a/search/classes_7.js b/search/classes_7.js
index 13728018..2a5ec39c 100644
--- a/search/classes_7.js
+++ b/search/classes_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['hash_5fset_5ft_249',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]]
+ ['hash_5fset_5ft_258',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]]
];
diff --git a/search/classes_8.js b/search/classes_8.js
index 0702a985..43cda5d4 100644
--- a/search/classes_8.js
+++ b/search/classes_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['kohonen_5farray_5f3d_250',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]]
+ ['kohonen_5farray_5f3d_259',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]]
];
diff --git a/search/classes_9.js b/search/classes_9.js
index 84d3c298..87b434e7 100644
--- a/search/classes_9.js
+++ b/search/classes_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['l_251',['L',['../df/db3/struct_l.html',1,'']]]
+ ['l_260',['L',['../df/db3/struct_l.html',1,'']]]
];
diff --git a/search/classes_a.js b/search/classes_a.js
index b05259e1..a0aeb45c 100644
--- a/search/classes_a.js
+++ b/search/classes_a.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['max_5fheap_252',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]],
- ['min_5fheap_253',['min_heap',['../de/dce/structmin__heap.html',1,'']]]
+ ['max_5fheap_261',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]],
+ ['min_5fheap_262',['min_heap',['../de/dce/structmin__heap.html',1,'']]]
];
diff --git a/search/classes_b.js b/search/classes_b.js
index 9c5909b9..35efdd61 100644
--- a/search/classes_b.js
+++ b/search/classes_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['node_254',['Node',['../db/d8b/struct_node.html',1,'Node'],['../d5/da1/structnode.html',1,'node']]]
+ ['node_263',['Node',['../db/d8b/struct_node.html',1,'Node'],['../d5/da1/structnode.html',1,'node']]]
];
diff --git a/search/classes_c.js b/search/classes_c.js
index 60718481..f02cdcef 100644
--- a/search/classes_c.js
+++ b/search/classes_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['pid_255',['pid',['../d0/d43/structpid.html',1,'']]]
+ ['pid_264',['pid',['../d0/d43/structpid.html',1,'']]]
];
diff --git a/search/classes_d.js b/search/classes_d.js
index 97420c46..0f0783ea 100644
--- a/search/classes_d.js
+++ b/search/classes_d.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['queue_256',['queue',['../d2/d36/structqueue.html',1,'']]],
- ['queuerep_257',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]]
+ ['queue_265',['queue',['../d2/d36/structqueue.html',1,'']]],
+ ['queuerep_266',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]]
];
diff --git a/search/classes_e.js b/search/classes_e.js
index 3879b3f7..d0ce547d 100644
--- a/search/classes_e.js
+++ b/search/classes_e.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['stack_258',['Stack',['../dd/d10/struct_stack.html',1,'']]],
- ['subset_259',['subset',['../dc/de5/structsubset.html',1,'']]],
- ['sudoku_260',['sudoku',['../dc/d18/structsudoku.html',1,'']]]
+ ['stack_267',['Stack',['../dd/d10/struct_stack.html',1,'']]],
+ ['subset_268',['subset',['../dc/de5/structsubset.html',1,'']]],
+ ['sudoku_269',['sudoku',['../dc/d18/structsudoku.html',1,'']]]
];
diff --git a/search/classes_f.js b/search/classes_f.js
index c150fa97..67de7498 100644
--- a/search/classes_f.js
+++ b/search/classes_f.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['t_261',['T',['../d5/d7e/struct_t.html',1,'']]],
- ['tnode_262',['tnode',['../d8/d7a/structtnode.html',1,'']]],
- ['trienode_263',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]]
+ ['t_270',['T',['../d5/d7e/struct_t.html',1,'']]],
+ ['tnode_271',['tnode',['../d8/d7a/structtnode.html',1,'']]],
+ ['trienode_272',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]]
];
diff --git a/search/defines_0.js b/search/defines_0.js
index eb121c33..579a7220 100644
--- a/search/defines_0.js
+++ b/search/defines_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_5fuse_5fmath_5fdefines_441',['_USE_MATH_DEFINES',['../d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): spirograph.c'],['../d2/df6/kohonen__som__topology_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_trace.c']]]
+ ['_5fuse_5fmath_5fdefines_458',['_USE_MATH_DEFINES',['../d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): spirograph.c'],['../d2/df6/kohonen__som__topology_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): kohonen_som_trace.c'],['../d6/d2e/cartesian__to__polar_8c.html#a525335710b53cb064ca56b936120431e',1,'_USE_MATH_DEFINES(): cartesian_to_polar.c']]]
];
diff --git a/search/defines_1.js b/search/defines_1.js
index 2c9c74af..44458561 100644
--- a/search/defines_1.js
+++ b/search/defines_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['accuracy_442',['ACCURACY',['../da/d38/durand__kerner__roots_8c.html#af270a96662132d0385cb6b4637c5a689',1,'ACCURACY(): durand_kerner_roots.c'],['../dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689',1,'ACCURACY(): newton_raphson_root.c']]]
+ ['accuracy_459',['ACCURACY',['../da/d38/durand__kerner__roots_8c.html#af270a96662132d0385cb6b4637c5a689',1,'ACCURACY(): durand_kerner_roots.c'],['../dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689',1,'ACCURACY(): newton_raphson_root.c']]]
];
diff --git a/search/defines_2.js b/search/defines_2.js
index 86f51c7d..f87b62ed 100644
--- a/search/defines_2.js
+++ b/search/defines_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['epsilon_443',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]]
+ ['epsilon_460',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]]
];
diff --git a/search/defines_3.js b/search/defines_3.js
index 377e0812..ea7045b3 100644
--- a/search/defines_3.js
+++ b/search/defines_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['lims_444',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]]
+ ['lims_461',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]]
];
diff --git a/search/defines_4.js b/search/defines_4.js
index 46549e95..dbf8e6fb 100644
--- a/search/defines_4.js
+++ b/search/defines_4.js
@@ -1,10 +1,12 @@
var searchData=
[
- ['max_5fdeno_445',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]],
- ['max_5fdigits_446',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]],
- ['max_5fl_447',['MAX_L',['../d4/d83/problem__401_2sol1_8c.html#adf2a0717e3307419a9d7c52707f5631e',1,'sol1.c']]],
- ['max_5flen_448',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]],
- ['max_5fname_5flen_449',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]],
- ['max_5fnames_450',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]],
- ['mod_451',['MOD',['../d4/d83/problem__401_2sol1_8c.html#aca7d5718ab8c38506adb3bef2469b319',1,'sol1.c']]]
+ ['max_5fdeno_462',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]],
+ ['max_5fdigits_463',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]],
+ ['max_5fl_464',['MAX_L',['../d4/d83/problem__401_2sol1_8c.html#adf2a0717e3307419a9d7c52707f5631e',1,'sol1.c']]],
+ ['max_5flen_465',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]],
+ ['max_5fname_5flen_466',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]],
+ ['max_5fnames_467',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]],
+ ['max_5fsize_468',['MAX_SIZE',['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'union_find.c']]],
+ ['min_469',['min',['../d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e',1,'jump_search.c']]],
+ ['mod_470',['MOD',['../d4/d83/problem__401_2sol1_8c.html#aca7d5718ab8c38506adb3bef2469b319',1,'sol1.c']]]
];
diff --git a/search/defines_5.js b/search/defines_5.js
index 06995284..b2ab4d9c 100644
--- a/search/defines_5.js
+++ b/search/defines_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['n_452',['N',['../db/d01/problem__13_2sol1_8c.html#a0240ac851181b84ac374872dc5434ee4',1,'sol1.c']]],
- ['n2_453',['N2',['../db/d01/problem__13_2sol1_8c.html#acd864640121c7df2c19f61f7baa507e4',1,'sol1.c']]]
+ ['n_471',['N',['../db/d01/problem__13_2sol1_8c.html#a0240ac851181b84ac374872dc5434ee4',1,'sol1.c']]],
+ ['n2_472',['N2',['../db/d01/problem__13_2sol1_8c.html#acd864640121c7df2c19f61f7baa507e4',1,'sol1.c']]]
];
diff --git a/search/defines_6.js b/search/defines_6.js
index 219346f7..d9e44969 100644
--- a/search/defines_6.js
+++ b/search/defines_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['order_454',['order',['../d4/d07/ode__forward__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_semi_implicit_euler.c']]]
+ ['order_473',['order',['../d4/d07/ode__forward__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a9ceb646336224ee890a269d0b4600d09',1,'order(): ode_semi_implicit_euler.c']]]
];
diff --git a/search/files_0.js b/search/files_0.js
index d4cbc16a..9846d3f5 100644
--- a/search/files_0.js
+++ b/search/files_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['adaline_5flearning_2ec_265',['adaline_learning.c',['../dd/d8c/adaline__learning_8c.html',1,'']]]
+ ['adaline_5flearning_2ec_274',['adaline_learning.c',['../dd/d8c/adaline__learning_8c.html',1,'']]]
];
diff --git a/search/files_1.js b/search/files_1.js
index 9853b0d9..ad70d234 100644
--- a/search/files_1.js
+++ b/search/files_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['bead_5fsort_2ec_266',['bead_sort.c',['../d2/da8/bead__sort_8c.html',1,'']]],
- ['binary_5fsearch_2ec_267',['binary_search.c',['../df/d3b/binary__search_8c.html',1,'']]]
+ ['bead_5fsort_2ec_275',['bead_sort.c',['../d2/da8/bead__sort_8c.html',1,'']]],
+ ['binary_5fsearch_2ec_276',['binary_search.c',['../df/d3b/binary__search_8c.html',1,'']]]
];
diff --git a/search/files_2.js b/search/files_2.js
index 5b3401c8..89b850a2 100644
--- a/search/files_2.js
+++ b/search/files_2.js
@@ -1,6 +1,7 @@
var searchData=
[
- ['c_5fatoi_5fstr_5fto_5finteger_2ec_268',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]],
- ['cantor_5fset_2ec_269',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]],
- ['collatz_2ec_270',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]]
+ ['c_5fatoi_5fstr_5fto_5finteger_2ec_277',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]],
+ ['cantor_5fset_2ec_278',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]],
+ ['cartesian_5fto_5fpolar_2ec_279',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]],
+ ['collatz_2ec_280',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]]
];
diff --git a/search/files_3.js b/search/files_3.js
index d9577f85..5018577d 100644
--- a/search/files_3.js
+++ b/search/files_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['durand_5fkerner_5froots_2ec_271',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]]
+ ['durand_5fkerner_5froots_2ec_281',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]]
];
diff --git a/search/files_4.js b/search/files_4.js
index 11998f0c..43f393c9 100644
--- a/search/files_4.js
+++ b/search/files_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['factorial_5flarge_5fnumber_2ec_272',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]],
- ['fibonacci_5ffast_2ec_273',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]]
+ ['factorial_5flarge_5fnumber_2ec_282',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]],
+ ['fibonacci_5ffast_2ec_283',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]]
];
diff --git a/search/files_5.js b/search/files_5.js
index 989c7892..b0721f16 100644
--- a/search/files_5.js
+++ b/search/files_5.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['kohonen_5fsom_5ftopology_2ec_274',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]],
- ['kohonen_5fsom_5ftrace_2ec_275',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]]
+ ['jump_5fsearch_2ec_284',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]]
];
diff --git a/search/files_6.js b/search/files_6.js
index 539db752..3a0e70d3 100644
--- a/search/files_6.js
+++ b/search/files_6.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['lu_5fdecompose_2ec_276',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]]
+ ['kohonen_5fsom_5ftopology_2ec_285',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]],
+ ['kohonen_5fsom_5ftrace_2ec_286',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]]
];
diff --git a/search/files_7.js b/search/files_7.js
index 81a99c03..f832392b 100644
--- a/search/files_7.js
+++ b/search/files_7.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['merge_5fsort_2ec_277',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]],
- ['modified_5fbinary_5fsearch_2ec_278',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]]
+ ['lu_5fdecompose_2ec_287',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]]
];
diff --git a/search/files_8.js b/search/files_8.js
index 05eccf8d..093ac854 100644
--- a/search/files_8.js
+++ b/search/files_8.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['newton_5fraphson_5froot_2ec_279',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]]
+ ['merge_5fsort_2ec_288',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]],
+ ['modified_5fbinary_5fsearch_2ec_289',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]]
];
diff --git a/search/files_9.js b/search/files_9.js
index 80ba2dfb..c9993a52 100644
--- a/search/files_9.js
+++ b/search/files_9.js
@@ -1,6 +1,4 @@
var searchData=
[
- ['ode_5fforward_5feuler_2ec_280',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]],
- ['ode_5fmidpoint_5feuler_2ec_281',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]],
- ['ode_5fsemi_5fimplicit_5feuler_2ec_282',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]]
+ ['newton_5fraphson_5froot_2ec_290',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]]
];
diff --git a/search/files_a.js b/search/files_a.js
index b22b7f01..7ad6f6f4 100644
--- a/search/files_a.js
+++ b/search/files_a.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['qr_5fdecompose_2eh_283',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]],
- ['qr_5fdecomposition_2ec_284',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]],
- ['qr_5feigen_5fvalues_2ec_285',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]]
+ ['ode_5fforward_5feuler_2ec_291',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]],
+ ['ode_5fmidpoint_5feuler_2ec_292',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]],
+ ['ode_5fsemi_5fimplicit_5feuler_2ec_293',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]]
];
diff --git a/search/files_b.js b/search/files_b.js
index bf3a1a0b..deb41b13 100644
--- a/search/files_b.js
+++ b/search/files_b.js
@@ -1,4 +1,6 @@
var searchData=
[
- ['realtime_5fstats_2ec_286',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]]
+ ['qr_5fdecompose_2eh_294',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]],
+ ['qr_5fdecomposition_2ec_295',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]],
+ ['qr_5feigen_5fvalues_2ec_296',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]]
];
diff --git a/search/files_c.js b/search/files_c.js
index afb87f4d..73d8086b 100644
--- a/search/files_c.js
+++ b/search/files_c.js
@@ -1,12 +1,4 @@
var searchData=
[
- ['shell_5fsort2_2ec_287',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]],
- ['so1_2ec_288',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
- ['sol_2ec_289',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../df/de7/problem__5_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
- ['sol1_2ec_290',['sol1.c',['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)']]],
- ['sol2_2ec_291',['sol2.c',['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)']]],
- ['sol3_2ec_292',['sol3.c',['../d6/de3/sol3_8c.html',1,'']]],
- ['sol4_2ec_293',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
- ['spirograph_2ec_294',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
- ['sudoku_5fsolver_2ec_295',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]]
+ ['realtime_5fstats_2ec_297',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]]
];
diff --git a/search/files_d.js b/search/files_d.js
index 351e497a..9249e77e 100644
--- a/search/files_d.js
+++ b/search/files_d.js
@@ -1,4 +1,12 @@
var searchData=
[
- ['threaded_5fbinary_5ftrees_2ec_296',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]]
+ ['shell_5fsort2_2ec_298',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]],
+ ['so1_2ec_299',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
+ ['sol_2ec_300',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../df/de7/problem__5_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
+ ['sol1_2ec_301',['sol1.c',['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)']]],
+ ['sol2_2ec_302',['sol2.c',['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)']]],
+ ['sol3_2ec_303',['sol3.c',['../d6/de3/sol3_8c.html',1,'']]],
+ ['sol4_2ec_304',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
+ ['spirograph_2ec_305',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
+ ['sudoku_5fsolver_2ec_306',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]]
];
diff --git a/search/files_e.html b/search/files_e.html
new file mode 100644
index 00000000..637cd559
--- /dev/null
+++ b/search/files_e.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
+
+
Searching...
+
No Matches
+
+
+
+
diff --git a/search/files_e.js b/search/files_e.js
new file mode 100644
index 00000000..9849a425
--- /dev/null
+++ b/search/files_e.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+ ['threaded_5fbinary_5ftrees_2ec_307',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]]
+];
diff --git a/search/files_f.html b/search/files_f.html
new file mode 100644
index 00000000..ac88a76d
--- /dev/null
+++ b/search/files_f.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
+
+
Searching...
+
No Matches
+
+
+
+
diff --git a/search/files_f.js b/search/files_f.js
new file mode 100644
index 00000000..e9215885
--- /dev/null
+++ b/search/files_f.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+ ['union_5ffind_2ec_308',['union_find.c',['../df/df3/union__find_8c.html',1,'']]]
+];
diff --git a/search/functions_0.js b/search/functions_0.js
index d5dbb431..83aad84e 100644
--- a/search/functions_0.js
+++ b/search/functions_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_5frandom_297',['_random',['../d1/d6b/group__kohonen__2d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_trace.c']]]
+ ['_5frandom_309',['_random',['../d1/d6b/group__kohonen__2d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gaf5ce14f026d6d231bef29161bac2b485',1,'_random(double a, double b): kohonen_som_trace.c']]]
];
diff --git a/search/functions_1.js b/search/functions_1.js
index 8169b500..0744fe4c 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['adaline_5factivation_298',['adaline_activation',['../da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa',1,'adaline_learning.c']]],
- ['adaline_5ffit_299',['adaline_fit',['../da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd',1,'adaline_learning.c']]],
- ['adaline_5ffit_5fsample_300',['adaline_fit_sample',['../da/d2a/group__adaline.html#ga20d3642e0a87f36fdb7bf91b023cd166',1,'adaline_learning.c']]],
- ['adaline_5fget_5fweights_5fstr_301',['adaline_get_weights_str',['../da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120',1,'adaline_learning.c']]],
- ['adaline_5fpredict_302',['adaline_predict',['../da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94',1,'adaline_learning.c']]],
- ['add_5fdigit_303',['add_digit',['../d6/d3d/factorial__large__number_8c.html#af2869d36c22a2b8f93d3166a84e124b3',1,'add_digit(large_num *num, unsigned int value): factorial_large_number.c'],['../db/d80/problem__20_2sol1_8c.html#afc373c28da6b17636528edcc97fb5f86',1,'add_digit(big_int *digit, char value): sol1.c']]],
- ['add_5fnumbers_304',['add_numbers',['../db/d01/problem__13_2sol1_8c.html#ad51742ca5a5c99e860bdf30299163bf2',1,'add_numbers(uint8_t *a, uint8_t *b, uint8_t N): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#af9729befaffc1aab9ac9fedc4706e66c',1,'add_numbers(unsigned char *a, unsigned char *b, unsigned char *c, int N): sol1.c']]]
+ ['adaline_5factivation_310',['adaline_activation',['../da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa',1,'adaline_learning.c']]],
+ ['adaline_5ffit_311',['adaline_fit',['../da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd',1,'adaline_learning.c']]],
+ ['adaline_5ffit_5fsample_312',['adaline_fit_sample',['../da/d2a/group__adaline.html#ga20d3642e0a87f36fdb7bf91b023cd166',1,'adaline_learning.c']]],
+ ['adaline_5fget_5fweights_5fstr_313',['adaline_get_weights_str',['../da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120',1,'adaline_learning.c']]],
+ ['adaline_5fpredict_314',['adaline_predict',['../da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94',1,'adaline_learning.c']]],
+ ['add_5fdigit_315',['add_digit',['../d6/d3d/factorial__large__number_8c.html#af2869d36c22a2b8f93d3166a84e124b3',1,'add_digit(large_num *num, unsigned int value): factorial_large_number.c'],['../db/d80/problem__20_2sol1_8c.html#afc373c28da6b17636528edcc97fb5f86',1,'add_digit(big_int *digit, char value): sol1.c']]],
+ ['add_5fnumbers_316',['add_numbers',['../db/d01/problem__13_2sol1_8c.html#ad51742ca5a5c99e860bdf30299163bf2',1,'add_numbers(uint8_t *a, uint8_t *b, uint8_t N): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#af9729befaffc1aab9ac9fedc4706e66c',1,'add_numbers(unsigned char *a, unsigned char *b, unsigned char *c, int N): sol1.c']]]
];
diff --git a/search/functions_10.js b/search/functions_10.js
index 5e918c67..22b53819 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['remove_5fdigits_381',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]]
+ ['qr_5fdecompose_396',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]]
];
diff --git a/search/functions_11.js b/search/functions_11.js
index b92dbe36..364a8b43 100644
--- a/search/functions_11.js
+++ b/search/functions_11.js
@@ -1,20 +1,4 @@
var searchData=
[
- ['save_5f2d_5fdata_382',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]],
- ['save_5fnd_5fdata_383',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]],
- ['save_5fu_5fmatrix_384',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]],
- ['search_385',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'threaded_binary_trees.c']]],
- ['semi_5fimplicit_5feuler_386',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]],
- ['semi_5fimplicit_5feuler_5fstep_387',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]],
- ['shell_5fsort_388',['shell_sort',['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c'],['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c']]],
- ['show_5fdata_389',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
- ['sigma_390',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
- ['sigma2_391',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
- ['solve_392',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
- ['spirograph_393',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
- ['stats_5fcomputer1_394',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
- ['stats_5fcomputer2_395',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
- ['sum_5fof_5fdivisors_396',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
- ['sum_5fof_5fprimes_397',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
- ['swap_398',['swap',['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'merge_sort.c']]]
+ ['remove_5fdigits_397',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]]
];
diff --git a/search/functions_12.js b/search/functions_12.js
index bada64f9..87ed9f9b 100644
--- a/search/functions_12.js
+++ b/search/functions_12.js
@@ -1,15 +1,20 @@
var searchData=
[
- ['test_399',['test',['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): binary_search.c']]],
- ['test1_400',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]],
- ['test2_401',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]],
- ['test3_402',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c']]],
- ['test_5f2d_5fclasses_403',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
- ['test_5f3d_5fclasses_404',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
- ['test_5f3d_5fclasses1_405',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
- ['test_5f3d_5fclasses2_406',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
- ['test_5fc_5fatoi_407',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
- ['test_5fcircle_408',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
- ['test_5ffunction_409',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
- ['test_5flamniscate_410',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]]
+ ['save_5f2d_5fdata_398',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]],
+ ['save_5fnd_5fdata_399',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]],
+ ['save_5fu_5fmatrix_400',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]],
+ ['search_401',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'threaded_binary_trees.c']]],
+ ['semi_5fimplicit_5feuler_402',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]],
+ ['semi_5fimplicit_5feuler_5fstep_403',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]],
+ ['shell_5fsort_404',['shell_sort',['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c'],['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c']]],
+ ['show_5fdata_405',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
+ ['sigma_406',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
+ ['sigma2_407',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
+ ['solve_408',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
+ ['spirograph_409',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
+ ['stats_5fcomputer1_410',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
+ ['stats_5fcomputer2_411',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
+ ['sum_5fof_5fdivisors_412',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
+ ['sum_5fof_5fprimes_413',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
+ ['swap_414',['swap',['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'merge_sort.c']]]
];
diff --git a/search/functions_13.js b/search/functions_13.js
index d1f058b3..9f152deb 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -1,7 +1,16 @@
var searchData=
[
- ['vector_5fdot_411',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]],
- ['vector_5fmag_412',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]],
- ['vector_5fproj_413',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]],
- ['vector_5fsub_414',['vector_sub',['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'qr_decompose.h']]]
+ ['test_415',['test',['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): binary_search.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): jump_search.c']]],
+ ['test1_416',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]],
+ ['test2_417',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): kohonen_som_trace.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]],
+ ['test3_418',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c']]],
+ ['test_5f2d_5fclasses_419',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
+ ['test_5f3d_5fclasses_420',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
+ ['test_5f3d_5fclasses1_421',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
+ ['test_5f3d_5fclasses2_422',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
+ ['test_5fc_5fatoi_423',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
+ ['test_5fcircle_424',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
+ ['test_5ffunction_425',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
+ ['test_5flamniscate_426',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]],
+ ['to_5fpolar_427',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]]
];
diff --git a/search/functions_14.html b/search/functions_14.html
new file mode 100644
index 00000000..527223c5
--- /dev/null
+++ b/search/functions_14.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
+
+
Searching...
+
No Matches
+
+
+
+
diff --git a/search/functions_14.js b/search/functions_14.js
new file mode 100644
index 00000000..6e0a2d21
--- /dev/null
+++ b/search/functions_14.js
@@ -0,0 +1,7 @@
+var searchData=
+[
+ ['vector_5fdot_428',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]],
+ ['vector_5fmag_429',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]],
+ ['vector_5fproj_430',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]],
+ ['vector_5fsub_431',['vector_sub',['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'qr_decompose.h']]]
+];
diff --git a/search/functions_2.js b/search/functions_2.js
index 77b85089..e2684730 100644
--- a/search/functions_2.js
+++ b/search/functions_2.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['bead_5fsort_305',['bead_sort',['../d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8',1,'bead_sort.c']]],
- ['binarysearch_306',['binarySearch',['../d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890',1,'modified_binary_search.c']]],
- ['binarysearch1_307',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]],
- ['binarysearch2_308',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]]
+ ['bead_5fsort_317',['bead_sort',['../d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8',1,'bead_sort.c']]],
+ ['binarysearch_318',['binarySearch',['../d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890',1,'modified_binary_search.c']]],
+ ['binarysearch1_319',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]],
+ ['binarysearch2_320',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]]
];
diff --git a/search/functions_3.js b/search/functions_3.js
index 381403bf..86c541e4 100644
--- a/search/functions_3.js
+++ b/search/functions_3.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['c_5fatoi_309',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]],
- ['check_5ftermination_310',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
- ['collatz_311',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
- ['compare_312',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
- ['complex_5fstr_313',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]],
- ['count_5fdivisors_314',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
- ['create_5fmatrix_315',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
- ['create_5fnode_316',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]]
+ ['c_5fatoi_321',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]],
+ ['check_5ftermination_322',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
+ ['collatz_323',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
+ ['compare_324',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
+ ['complex_5fstr_325',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]],
+ ['count_5fdivisors_326',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
+ ['create_5fmatrix_327',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
+ ['create_5fnode_328',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]]
];
diff --git a/search/functions_4.js b/search/functions_4.js
index 8d7e3834..daa3614c 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['d_5ffunc_317',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]],
- ['delete_5fadaline_318',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]],
- ['delete_5fbt_319',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]],
- ['delete_5fnumber_320',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]],
- ['display_321',['display',['../dc/d2e/lu__decompose_8c.html#a0789beb8d3396582d77b7aedf5e5554a',1,'display(double **A, int N): lu_decompose.c'],['../d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bead_sort.c']]]
+ ['d_5ffunc_329',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]],
+ ['delete_5fadaline_330',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]],
+ ['delete_5fbt_331',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]],
+ ['delete_5fnumber_332',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]],
+ ['display_333',['display',['../dc/d2e/lu__decompose_8c.html#a0789beb8d3396582d77b7aedf5e5554a',1,'display(double **A, int N): lu_decompose.c'],['../d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bead_sort.c']]]
];
diff --git a/search/functions_5.js b/search/functions_5.js
index 556a9274..61e5f0cb 100644
--- a/search/functions_5.js
+++ b/search/functions_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['eigen_5fvalues_322',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]],
- ['exact_5fsolution_323',['exact_solution',['../d4/d07/ode__forward__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_semi_implicit_euler.c']]]
+ ['eigen_5fvalues_334',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]],
+ ['exact_5fsolution_335',['exact_solution',['../d4/d07/ode__forward__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a8caee977b26888d34040b122e0e28e3a',1,'exact_solution(const double *x, double *y): ode_semi_implicit_euler.c']]]
];
diff --git a/search/functions_6.js b/search/functions_6.js
index d11653ce..53cdb085 100644
--- a/search/functions_6.js
+++ b/search/functions_6.js
@@ -1,8 +1,9 @@
var searchData=
[
- ['fib_324',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]],
- ['forward_5feuler_325',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]],
- ['forward_5feuler_5fstep_326',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]],
- ['free_5fmemory_327',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]],
- ['func_328',['func',['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'newton_raphson_root.c']]]
+ ['fib_336',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]],
+ ['find_337',['find',['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'union_find.c']]],
+ ['forward_5feuler_338',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]],
+ ['forward_5feuler_5fstep_339',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]],
+ ['free_5fmemory_340',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]],
+ ['func_341',['func',['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'newton_raphson_root.c']]]
];
diff --git a/search/functions_7.js b/search/functions_7.js
index 35442c75..a5f1443d 100644
--- a/search/functions_7.js
+++ b/search/functions_7.js
@@ -1,14 +1,15 @@
var searchData=
[
- ['gcd_329',['gcd',['../df/de7/problem__5_2sol_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol.c']]],
- ['get_5fclock_5fdiff_330',['get_clock_diff',['../d2/df6/kohonen__som__topology_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_trace.c']]],
- ['get_5fdigits_331',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]],
- ['get_5fdivisors_332',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]],
- ['get_5fmin_5f2d_333',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]],
- ['get_5fmonth_5fdays_334',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]],
- ['get_5fnext_5fabundant_335',['get_next_abundant',['../d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol2.c']]],
- ['get_5fnext_5funknown_336',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]],
- ['get_5fnumber_337',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]],
- ['get_5fperfect_5fnumber_338',['get_perfect_number',['../d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol2.c']]],
- ['get_5fproduct_339',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]]
+ ['gcd_342',['gcd',['../df/de7/problem__5_2sol_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol.c']]],
+ ['get_5fclock_5fdiff_343',['get_clock_diff',['../d2/df6/kohonen__som__topology_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a2256c10b16edba377b64a44b6c656908',1,'get_clock_diff(clock_t start_t, clock_t end_t): kohonen_som_trace.c']]],
+ ['get_5fdigits_344',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]],
+ ['get_5fdivisors_345',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]],
+ ['get_5fmin_5f2d_346',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]],
+ ['get_5fmonth_5fdays_347',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]],
+ ['get_5fnext_5fabundant_348',['get_next_abundant',['../d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf',1,'get_next_abundant(unsigned long N): sol2.c']]],
+ ['get_5fnext_5funknown_349',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]],
+ ['get_5fnumber_350',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]],
+ ['get_5fperfect_5fnumber_351',['get_perfect_number',['../d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b',1,'get_perfect_number(unsigned long N): sol2.c']]],
+ ['get_5fproduct_352',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]],
+ ['get_5frand_353',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]]
];
diff --git a/search/functions_8.js b/search/functions_8.js
index 72db8c23..75bf7347 100644
--- a/search/functions_8.js
+++ b/search/functions_8.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['inorder_5fdisplay_340',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
- ['insert_5fbt_341',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
- ['is_5fabundant_342',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N): sol2.c']]],
- ['is_5fin_343',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
- ['is_5fleap_5fyear_344',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
- ['is_5fpalindromic_345',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
- ['is_5fprime_346',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
- ['is_5fsum_5fof_5fabundant_347',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol2.c']]],
- ['isprime_348',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]]
+ ['inorder_5fdisplay_354',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
+ ['insert_5fbt_355',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
+ ['is_5fabundant_356',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N): sol2.c']]],
+ ['is_5fin_357',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
+ ['is_5fleap_5fyear_358',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
+ ['is_5fpalindromic_359',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
+ ['is_5fprime_360',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
+ ['is_5fsum_5fof_5fabundant_361',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N): sol2.c']]],
+ ['isprime_362',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]]
];
diff --git a/search/functions_9.js b/search/functions_9.js
index 67712e34..9a655c97 100644
--- a/search/functions_9.js
+++ b/search/functions_9.js
@@ -1,8 +1,5 @@
var searchData=
[
- ['kohonen_5fdata_5f3d_349',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]],
- ['kohonen_5fget_5fmin_5f1d_350',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]],
- ['kohonen_5fsom_351',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]],
- ['kohonen_5fsom_5ftracer_352',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]],
- ['kohonen_5fupdate_5fweights_353',['kohonen_update_weights',['../d1/d6b/group__kohonen__2d.html#ga83abb572c60d202e100595a989dfe123',1,'kohonen_update_weights(const double *X, struct kohonen_array_3d *W, double **D, int num_out, int num_features, double alpha, int R): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gae334493a0917a24736fe5ba82aa6f81f',1,'kohonen_update_weights(double const *x, double *const *W, double *D, int num_out, int num_features, double alpha, int R): kohonen_som_trace.c']]]
+ ['join_363',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]],
+ ['jump_5fsearch_364',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]]
];
diff --git a/search/functions_a.js b/search/functions_a.js
index 5e7b6449..941ca9e7 100644
--- a/search/functions_a.js
+++ b/search/functions_a.js
@@ -1,6 +1,8 @@
var searchData=
[
- ['lazy_5fsort_354',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
- ['lcm_355',['lcm',['../df/de7/problem__5_2sol_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol.c']]],
- ['lu_5fdecomposition_356',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]]
+ ['kohonen_5fdata_5f3d_365',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]],
+ ['kohonen_5fget_5fmin_5f1d_366',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]],
+ ['kohonen_5fsom_367',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]],
+ ['kohonen_5fsom_5ftracer_368',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]],
+ ['kohonen_5fupdate_5fweights_369',['kohonen_update_weights',['../d1/d6b/group__kohonen__2d.html#ga83abb572c60d202e100595a989dfe123',1,'kohonen_update_weights(const double *X, struct kohonen_array_3d *W, double **D, int num_out, int num_features, double alpha, int R): kohonen_som_topology.c'],['../d0/dcb/group__kohonen__1d.html#gae334493a0917a24736fe5ba82aa6f81f',1,'kohonen_update_weights(double const *x, double *const *W, double *D, int num_out, int num_features, double alpha, int R): kohonen_som_trace.c']]]
];
diff --git a/search/functions_b.js b/search/functions_b.js
index ac6ec6a5..1c6ce05b 100644
--- a/search/functions_b.js
+++ b/search/functions_b.js
@@ -1,11 +1,6 @@
var searchData=
[
- ['main_357',['main',['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_trace.c'],['../dc/d80/cantor__set_8c.html#abf9e6b7e6f15df4b525a2e7705ba3089',1,'main(int argc, char const *argv[]): cantor_set.c'],['../dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): collatz.c'],['../d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): factorial_large_number.c'],['../d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): fibonacci_fast.c'],['../de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sudoku_solver.c'],['../da/d38/durand__kerner__roots_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): durand_kerner_roots.c'],['../dc/d2e/lu__decompose_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): lu_decompose.c'],['../dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): newton_raphson_root.c'],['../d4/d07/ode__forward__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_semi_implicit_euler.c'],['../d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): qr_decomposition.c'],['../d7/d50/qr__eigen__values_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): qr_eigen_values.c'],['../dc/d47/realtime__stats_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): realtime_stats.c'],['../da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d6/de3/sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol3.c'],['../d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol4.c'],['../d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): so1.c'],['../db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol2.c'],['../d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/de7/problem__5_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): binary_search.c'],['../d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): modified_binary_search.c'],['../d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bead_sort.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]],
- ['mat_5fmul_358',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]],
- ['merge_359',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]],
- ['merge_5fsort_360',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]],
- ['midpoint_5feuler_361',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]],
- ['midpoint_5feuler_5fstep_362',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]],
- ['modifiedbinarysearch_363',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]],
- ['multiply_364',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]]
+ ['lazy_5fsort_370',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
+ ['lcm_371',['lcm',['../df/de7/problem__5_2sol_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol.c']]],
+ ['lu_5fdecomposition_372',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]]
];
diff --git a/search/functions_c.js b/search/functions_c.js
index a0c840a7..98c2c667 100644
--- a/search/functions_c.js
+++ b/search/functions_c.js
@@ -1,6 +1,11 @@
var searchData=
[
- ['new_5fadaline_365',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]],
- ['new_5fnumber_366',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]],
- ['number_5fof_5fpaths_367',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
+ ['main_373',['main',['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): kohonen_som_trace.c'],['../dc/d80/cantor__set_8c.html#abf9e6b7e6f15df4b525a2e7705ba3089',1,'main(int argc, char const *argv[]): cantor_set.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): cartesian_to_polar.c'],['../dc/d80/collatz_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): collatz.c'],['../d6/d3d/factorial__large__number_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): factorial_large_number.c'],['../d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): fibonacci_fast.c'],['../de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sudoku_solver.c'],['../df/df3/union__find_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): union_find.c'],['../da/d38/durand__kerner__roots_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): durand_kerner_roots.c'],['../dc/d2e/lu__decompose_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): lu_decompose.c'],['../dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): newton_raphson_root.c'],['../d4/d07/ode__forward__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_semi_implicit_euler.c'],['../d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): qr_decomposition.c'],['../d7/d50/qr__eigen__values_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): qr_eigen_values.c'],['../dc/d47/realtime__stats_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): realtime_stats.c'],['../da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d6/de3/sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol3.c'],['../d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol4.c'],['../d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): so1.c'],['../db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol2.c'],['../d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol1.c'],['../d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.c'],['../d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../df/de7/problem__5_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol.c'],['../dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol1.c'],['../d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): sol2.c'],['../df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): binary_search.c'],['../d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): jump_search.c'],['../d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): modified_binary_search.c'],['../d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bead_sort.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]],
+ ['mat_5fmul_374',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]],
+ ['merge_375',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]],
+ ['merge_5fsort_376',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]],
+ ['midpoint_5feuler_377',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]],
+ ['midpoint_5feuler_5fstep_378',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]],
+ ['modifiedbinarysearch_379',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]],
+ ['multiply_380',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]]
];
diff --git a/search/functions_d.js b/search/functions_d.js
index dde7bfd5..eec840d6 100644
--- a/search/functions_d.js
+++ b/search/functions_d.js
@@ -1,7 +1,6 @@
var searchData=
[
- ['ok_368',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]],
- ['okbox_369',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]],
- ['okcol_370',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]],
- ['okrow_371',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]]
+ ['new_5fadaline_381',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]],
+ ['new_5fnumber_382',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]],
+ ['number_5fof_5fpaths_383',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
];
diff --git a/search/functions_e.js b/search/functions_e.js
index fed77ad7..423531fb 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -1,11 +1,7 @@
var searchData=
[
- ['poly_5ffunction_372',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]],
- ['postorder_5fdisplay_373',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]],
- ['preorder_5fdisplay_374',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]],
- ['print_375',['print',['../dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab',1,'print(CantorSet *head): cantor_set.c'],['../d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1',1,'print(const struct sudoku *a): sudoku_solver.c']]],
- ['print_5fmatrix_376',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]],
- ['print_5fnumber_377',['print_number',['../db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319',1,'print_number(uint8_t *number, uint8_t N, int8_t num_digits_to_print): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235',1,'print_number(unsigned char *number, int N): sol1.c']]],
- ['problem_378',['problem',['../d4/d07/ode__forward__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_semi_implicit_euler.c']]],
- ['propagate_379',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]]
+ ['ok_384',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]],
+ ['okbox_385',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]],
+ ['okcol_386',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]],
+ ['okrow_387',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]]
];
diff --git a/search/functions_f.js b/search/functions_f.js
index 8541d29f..5dacbe99 100644
--- a/search/functions_f.js
+++ b/search/functions_f.js
@@ -1,4 +1,11 @@
var searchData=
[
- ['qr_5fdecompose_380',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]]
+ ['poly_5ffunction_388',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]],
+ ['postorder_5fdisplay_389',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]],
+ ['preorder_5fdisplay_390',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]],
+ ['print_391',['print',['../dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab',1,'print(CantorSet *head): cantor_set.c'],['../d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1',1,'print(const struct sudoku *a): sudoku_solver.c']]],
+ ['print_5fmatrix_392',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]],
+ ['print_5fnumber_393',['print_number',['../db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319',1,'print_number(uint8_t *number, uint8_t N, int8_t num_digits_to_print): sol1.c'],['../d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235',1,'print_number(unsigned char *number, int N): sol1.c']]],
+ ['problem_394',['problem',['../d4/d07/ode__forward__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy): ode_semi_implicit_euler.c']]],
+ ['propagate_395',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]]
];
diff --git a/search/groups_0.js b/search/groups_0.js
index 47324d3c..89a1824b 100644
--- a/search/groups_0.js
+++ b/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['adaline_20learning_20algorithm_455',['Adaline learning algorithm',['../da/d2a/group__adaline.html',1,'']]]
+ ['adaline_20learning_20algorithm_474',['Adaline learning algorithm',['../da/d2a/group__adaline.html',1,'']]]
];
diff --git a/search/groups_1.js b/search/groups_1.js
index dcfdfbb1..78125b8f 100644
--- a/search/groups_1.js
+++ b/search/groups_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['kohonen_20som_20trace_2fchain_20algorithm_456',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]],
- ['kohonen_20som_20topology_20algorithm_457',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]]
+ ['kohonen_20som_20trace_2fchain_20algorithm_475',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]],
+ ['kohonen_20som_20topology_20algorithm_476',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]]
];
diff --git a/search/groups_2.js b/search/groups_2.js
index a00701e2..5386444d 100644
--- a/search/groups_2.js
+++ b/search/groups_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['machine_20learning_20algorithms_458',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]]
+ ['machine_20learning_20algorithms_477',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]]
];
diff --git a/search/groups_3.js b/search/groups_3.js
index d4c95877..6a0e8aad 100644
--- a/search/groups_3.js
+++ b/search/groups_3.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['sorting_20algorithms_459',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
- ['sudoku_20solver_460',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]]
+ ['sorting_20algorithms_478',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
+ ['sudoku_20solver_479',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]]
];
diff --git a/search/pages_0.js b/search/pages_0.js
index abcb42ed..606b3d86 100644
--- a/search/pages_0.js
+++ b/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['array_461',['Array',['../d9/d41/md_data_structures_array__r_e_a_d_m_e.html',1,'']]]
+ ['array_480',['Array',['../d9/d41/md_data_structures_array__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_1.js b/search/pages_1.js
index c3d3a656..1a46a739 100644
--- a/search/pages_1.js
+++ b/search/pages_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['code_20style_20convention_462',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]]
+ ['code_20style_20convention_481',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]]
];
diff --git a/search/pages_2.js b/search/pages_2.js
index 191e7b76..727552e2 100644
--- a/search/pages_2.js
+++ b/search/pages_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['dictionary_463',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]]
+ ['dictionary_482',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_3.js b/search/pages_3.js
index 3fc23395..9cf496c8 100644
--- a/search/pages_3.js
+++ b/search/pages_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['hash_20algorithms_464',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]]
+ ['hash_20algorithms_483',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_4.js b/search/pages_4.js
index c52e2345..6595c115 100644
--- a/search/pages_4.js
+++ b/search/pages_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['list_20of_20all_20files_465',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
- ['leetcode_466',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]]
+ ['list_20of_20all_20files_484',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
+ ['leetcode_485',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_5.js b/search/pages_5.js
index 101cef9e..24de0798 100644
--- a/search/pages_5.js
+++ b/search/pages_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['projecteuler_467',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]]
+ ['projecteuler_486',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_6.js b/search/pages_6.js
index 5ec5bd12..75be9546 100644
--- a/search/pages_6.js
+++ b/search/pages_6.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['simple_20generic_20stack_468',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
- ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_469',['Sample solutions for <a href="http://exercism.io/">exercism.io</a>',['../d7/db5/md_exercism__r_e_a_d_m_e.html',1,'']]]
+ ['simple_20generic_20stack_487',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
+ ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_488',['Sample solutions for <a href="http://exercism.io/">exercism.io</a>',['../d7/db5/md_exercism__r_e_a_d_m_e.html',1,'']]]
];
diff --git a/search/pages_7.js b/search/pages_7.js
index 9f72abc8..6acd3352 100644
--- a/search/pages_7.js
+++ b/search/pages_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['the_20algorithms_20_2d_20c_470',['The Algorithms - C',['../index.html',1,'']]]
+ ['the_20algorithms_20_2d_20c_489',['The Algorithms - C',['../index.html',1,'']]]
];
diff --git a/search/searchdata.js b/search/searchdata.js
index aa095010..312c7635 100644
--- a/search/searchdata.js
+++ b/search/searchdata.js
@@ -1,9 +1,9 @@
var indexSectionsWithContent =
{
- 0: "_abcdefghiklmnopqrstvw",
+ 0: "_abcdefghijklmnopqrstuvw",
1: "_abcdeghklmnpqstw",
- 2: "abcdfklmnoqrst",
- 3: "_abcdefgiklmnopqrstv",
+ 2: "abcdfjklmnoqrstu",
+ 3: "_abcdefgijklmnopqrstv",
4: "adelmnprsvw",
5: "bcln",
6: "_aelmno",
diff --git a/search/typedefs_0.js b/search/typedefs_0.js
index 57de10bb..16da5e0c 100644
--- a/search/typedefs_0.js
+++ b/search/typedefs_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['big_5fint_437',['big_int',['../db/d80/problem__20_2sol1_8c.html#a62cbbd106aad52daadb9403a07d0da32',1,'sol1.c']]]
+ ['big_5fint_454',['big_int',['../db/d80/problem__20_2sol1_8c.html#a62cbbd106aad52daadb9403a07d0da32',1,'sol1.c']]]
];
diff --git a/search/typedefs_1.js b/search/typedefs_1.js
index 15bb2173..0d1bc6dc 100644
--- a/search/typedefs_1.js
+++ b/search/typedefs_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['cantorset_438',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]]
+ ['cantorset_455',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]]
];
diff --git a/search/typedefs_2.js b/search/typedefs_2.js
index f34180e7..5302f795 100644
--- a/search/typedefs_2.js
+++ b/search/typedefs_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['large_5fnum_439',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]]
+ ['large_5fnum_456',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]]
];
diff --git a/search/typedefs_3.js b/search/typedefs_3.js
index e5f736e1..5fb46da0 100644
--- a/search/typedefs_3.js
+++ b/search/typedefs_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['node_440',['node',['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'threaded_binary_trees.c']]]
+ ['node_457',['node',['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'threaded_binary_trees.c']]]
];
diff --git a/search/variables_0.js b/search/variables_0.js
index 43ea5c62..0c0feeef 100644
--- a/search/variables_0.js
+++ b/search/variables_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['a_415',['a',['../dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded',1,'sudoku']]],
- ['abundant_5fflags_416',['abundant_flags',['../d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06',1,'sol2.c']]]
+ ['a_432',['a',['../dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded',1,'sudoku']]],
+ ['abundant_5fflags_433',['abundant_flags',['../d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06',1,'sol2.c']]]
];
diff --git a/search/variables_1.js b/search/variables_1.js
index fe9ac155..7284205f 100644
--- a/search/variables_1.js
+++ b/search/variables_1.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['data_417',['data',['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]],
- ['digits_418',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]],
- ['dim1_419',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]],
- ['dim2_420',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]],
- ['dim3_421',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]]
+ ['data_434',['data',['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]],
+ ['digits_435',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]],
+ ['dim1_436',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]],
+ ['dim2_437',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]],
+ ['dim3_438',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]]
];
diff --git a/search/variables_2.js b/search/variables_2.js
index 5ec3184a..96ebc65a 100644
--- a/search/variables_2.js
+++ b/search/variables_2.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['end_422',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]],
- ['eta_423',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]]
+ ['end_439',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]],
+ ['eta_440',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]]
];
diff --git a/search/variables_3.js b/search/variables_3.js
index f6c92790..98f9fd62 100644
--- a/search/variables_3.js
+++ b/search/variables_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['llink_424',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]]
+ ['llink_441',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]]
];
diff --git a/search/variables_4.js b/search/variables_4.js
index 347f4ebb..36717ae0 100644
--- a/search/variables_4.js
+++ b/search/variables_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['max_5fn_425',['MAX_N',['../d7/ddb/problem__23_2sol1_8c.html#a337e545af040d754dc012b42523ee1ee',1,'MAX_N(): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a8c7ddb39906f281b801f2cd58d416c2b',1,'MAX_N(): sol2.c']]]
+ ['max_5fn_442',['MAX_N',['../d7/ddb/problem__23_2sol1_8c.html#a337e545af040d754dc012b42523ee1ee',1,'MAX_N(): sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a8c7ddb39906f281b801f2cd58d416c2b',1,'MAX_N(): sol2.c']]]
];
diff --git a/search/variables_5.js b/search/variables_5.js
index fadb655a..6b8aafd1 100644
--- a/search/variables_5.js
+++ b/search/variables_5.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['n_426',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]],
- ['n2_427',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]],
- ['next_428',['next',['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set']]],
- ['next_5fdigit_429',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
- ['num_5fdigits_430',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
- ['num_5fweights_431',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]]
+ ['n_443',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]],
+ ['n2_444',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]],
+ ['next_445',['next',['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set']]],
+ ['next_5fdigit_446',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
+ ['num_5fdigits_447',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
+ ['num_5fweights_448',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]]
];
diff --git a/search/variables_6.js b/search/variables_6.js
index b1546ce4..cdb535bd 100644
--- a/search/variables_6.js
+++ b/search/variables_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['prev_5fdigit_432',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]]
+ ['prev_5fdigit_449',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]]
];
diff --git a/search/variables_7.js b/search/variables_7.js
index d33dc325..b933c15e 100644
--- a/search/variables_7.js
+++ b/search/variables_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['rlink_433',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]]
+ ['rlink_450',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]]
];
diff --git a/search/variables_8.js b/search/variables_8.js
index ab61750e..e1f95b50 100644
--- a/search/variables_8.js
+++ b/search/variables_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['start_434',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]]
+ ['start_451',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]]
];
diff --git a/search/variables_9.js b/search/variables_9.js
index f3699e61..1e252788 100644
--- a/search/variables_9.js
+++ b/search/variables_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['value_435',['value',['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int']]]
+ ['value_452',['value',['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int']]]
];
diff --git a/search/variables_a.js b/search/variables_a.js
index 989cd291..011a1f50 100644
--- a/search/variables_a.js
+++ b/search/variables_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['weights_436',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]]
+ ['weights_453',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]]
];