diff --git a/d2/d6d/bubble__sort__2_8c.html b/d2/d6d/bubble__sort__2_8c.html new file mode 100644 index 00000000..b89e8f3c --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c.html @@ -0,0 +1,311 @@ + + + + + + + +Algorithms_in_C: sorting/bubble_sort_2.c File Reference + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
Algorithms_in_C +  1.0.0 +
+
Set of algorithms implemented in C.
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
bubble_sort_2.c File Reference
+
+
+ +

implementation of Bubble sort algorithm +More...

+
#include <stdlib.h>
+#include <assert.h>
+#include <stdbool.h>
+
+Include dependency graph for bubble_sort_2.c:
+
+
+
+
+
+ + + + +

+Macros

#define MAX   20
 for rand() calls for assert(<expr>) More...
 
+ + + + + + + + + + +

+Functions

void bubble_sort (int *array_sort)
 Bubble sort implementation. More...
 
static void test ()
 Test implementations. More...
 
int main ()
 Main function. More...
 
+

Detailed Description

+

implementation of Bubble sort algorithm

+

worst-case: O(n^2) best-case: O(n) average-complexity: O(n^2)

+
Author
Unknown author
+
+Gabriel Fioravante
+

Macro Definition Documentation

+ +

◆ MAX

+ +
+
+ + + + +
#define MAX   20
+
+ +

for rand() calls for assert(<expr>)

+

for boolean values: true, false
+

+ +
+
+

Function Documentation

+ +

◆ bubble_sort()

+ +
+
+ + + + + + + + +
void bubble_sort (int * array_sort)
+
+ +

Bubble sort implementation.

+
Parameters
+ + +
array_sortthe array to be sorted
+
+
+
Returns
void
+
25 {
+
26  bool is_sorted = false;
+
27 
+
28  /* keep iterating over entire array
+
29  * and swaping elements out of order
+
30  * until it is sorted */
+
31  while (!is_sorted)
+
32  {
+
33  is_sorted = true;
+
34 
+
35  /* iterate over all elements */
+
36  for (int i = 0; i < MAX - 1; i++)
+
37  {
+
38  /* check if adjacent elements are out of order */
+
39  if (array_sort[i] > array_sort[i + 1])
+
40  {
+
41  /* swap elements */
+
42  int change_place = array_sort[i];
+
43  array_sort[i] = array_sort[i + 1];
+
44  array_sort[i + 1] = change_place;
+
45  /* elements out of order were found
+
46  * so we reset the flag to keep ordering
+
47  * until no swap operations are executed */
+
48  is_sorted = false;
+
49  }
+
50  }
+
51  }
+
52 }
+
#define MAX
for rand() calls for assert(<expr>)
Definition: bubble_sort_2.c:17
+
+
+
+ +

◆ main()

+ +
+
+ + + + + + + + +
int main (void )
+
+ +

Main function.

+
Returns
0 on exit
+
84 {
+
85  test(); // run self-test implementations
+
86  return 0;
+
87 }
+
static void test()
Test implementations.
Definition: bubble_sort_2.c:58
+
+Here is the call graph for this function:
+
+
+
+
+ +
+
+ +

◆ test()

+ +
+
+ + + + + +
+ + + + + + + + +
static void test (void )
+
+static
+
+ +

Test implementations.

+
Returns
void
+
58  {
+
59  /* simple int array for testing */
+
60  int array_sort[MAX] = {0};
+
61 
+
62  /* populate our test array with
+
63  * random integer numbers */
+
64  for (int i = 0; i < MAX; i++)
+
65  {
+
66  array_sort[i] = rand() % 101;
+
67  }
+
68 
+
69  /* sort array */
+
70  bubble_sort(array_sort);
+
71 
+
72  /* check if array ir correctly ordered */
+
73  for (int i = 0; i < MAX - 1; i++)
+
74  {
+
75  assert(array_sort[i] <= array_sort[i+1]);
+
76  }
+
77 }
+
void bubble_sort(int *array_sort)
Bubble sort implementation.
Definition: bubble_sort_2.c:24
+
+Here is the call graph for this function:
+
+
+
+
+ +
+
+
+
+ + + + diff --git a/d2/d6d/bubble__sort__2_8c.js b/d2/d6d/bubble__sort__2_8c.js new file mode 100644 index 00000000..cebe29b1 --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c.js @@ -0,0 +1,7 @@ +var bubble__sort__2_8c = +[ + [ "MAX", "d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326", null ], + [ "bubble_sort", "d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281", null ], + [ "main", "d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ], + [ "test", "d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d", null ] +]; \ No newline at end of file diff --git a/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.map b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.map new file mode 100644 index 00000000..070cc375 --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.map @@ -0,0 +1,4 @@ + + + + diff --git a/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.md5 b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.md5 new file mode 100644 index 00000000..a73ea13c --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.md5 @@ -0,0 +1 @@ +5c8f22d263aa5b65df2e8449edd3b9a0 \ No newline at end of file diff --git a/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg new file mode 100644 index 00000000..e070eff4 --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg @@ -0,0 +1,37 @@ + + + + + + +test + + + +Node1 + + +test + + + + + +Node2 + + +bubble_sort + + + + + +Node1->Node2 + + + + + diff --git a/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map new file mode 100644 index 00000000..e7eb940f --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5 b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5 new file mode 100644 index 00000000..8fb98a1b --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5 @@ -0,0 +1 @@ +27d125f997f94e32a19bd362c1a020d8 \ No newline at end of file diff --git a/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg new file mode 100644 index 00000000..cd6c3edc --- /dev/null +++ b/d2/d6d/bubble__sort__2_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg @@ -0,0 +1,52 @@ + + + + + + +main + + + +Node1 + + +main + + + + + +Node2 + + +test + + + + + +Node1->Node2 + + + + + +Node3 + + +bubble_sort + + + + + +Node2->Node3 + + + + + diff --git a/d4/d64/bubble__sort__2_8c__incl.map b/d4/d64/bubble__sort__2_8c__incl.map new file mode 100644 index 00000000..982e5512 --- /dev/null +++ b/d4/d64/bubble__sort__2_8c__incl.map @@ -0,0 +1,6 @@ + + + + + + diff --git a/d4/d64/bubble__sort__2_8c__incl.md5 b/d4/d64/bubble__sort__2_8c__incl.md5 new file mode 100644 index 00000000..a449d8f8 --- /dev/null +++ b/d4/d64/bubble__sort__2_8c__incl.md5 @@ -0,0 +1 @@ +85089b98cb89ab96291af3dbf7560716 \ No newline at end of file diff --git a/d4/d64/bubble__sort__2_8c__incl.svg b/d4/d64/bubble__sort__2_8c__incl.svg new file mode 100644 index 00000000..9ec5e7cb --- /dev/null +++ b/d4/d64/bubble__sort__2_8c__incl.svg @@ -0,0 +1,67 @@ + + + + + + +sorting/bubble_sort_2.c + + + +Node1 + + +sorting/bubble_sort_2.c + + + + + +Node2 + + +stdlib.h + + + + + +Node1->Node2 + + + + + +Node3 + + +assert.h + + + + + +Node1->Node3 + + + + + +Node4 + + +stdbool.h + + + + + +Node1->Node4 + + + + + diff --git a/dir_bb1b521853a9c46347182a9d10420771.html b/dir_bb1b521853a9c46347182a9d10420771.html index d041457e..14cdb8da 100644 --- a/dir_bb1b521853a9c46347182a9d10420771.html +++ b/dir_bb1b521853a9c46347182a9d10420771.html @@ -103,6 +103,9 @@ Files file  bubble_sort.c  Bubble sort algorithm implementation
  +file  bubble_sort_2.c + implementation of Bubble sort algorithm
+  file  bubble_sort_recursion.c  Bubble sort algorithm implementation using recursion.
  diff --git a/dir_bb1b521853a9c46347182a9d10420771.js b/dir_bb1b521853a9c46347182a9d10420771.js index 86349f29..5959caa1 100644 --- a/dir_bb1b521853a9c46347182a9d10420771.js +++ b/dir_bb1b521853a9c46347182a9d10420771.js @@ -2,6 +2,7 @@ var dir_bb1b521853a9c46347182a9d10420771 = [ [ "bead_sort.c", "d2/da8/bead__sort_8c.html", "d2/da8/bead__sort_8c" ], [ "bubble_sort.c", "dd/de4/bubble__sort_8c.html", "dd/de4/bubble__sort_8c" ], + [ "bubble_sort_2.c", "d2/d6d/bubble__sort__2_8c.html", "d2/d6d/bubble__sort__2_8c" ], [ "bubble_sort_recursion.c", "d5/d38/bubble__sort__recursion_8c.html", "d5/d38/bubble__sort__recursion_8c" ], [ "insertion_sort.c", "db/ddf/insertion__sort_8c.html", "db/ddf/insertion__sort_8c" ], [ "insertion_sort_recursive.c", "de/d0c/insertion__sort__recursive_8c.html", "de/d0c/insertion__sort__recursive_8c" ], diff --git a/files.html b/files.html index b770aae5..dd14653b 100644 --- a/files.html +++ b/files.html @@ -253,12 +253,13 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });   sorting  bead_sort.cSorting of array list using bead sort  bubble_sort.cBubble sort algorithm implementation - bubble_sort_recursion.cBubble sort algorithm implementation using recursion - insertion_sort.cInsertion sort algorithm implementation - insertion_sort_recursive.cInsertion sort algorithm implementation - merge_sort.cImplementation of merge sort algorithm - selection_sort.cSelection sort algorithm implementation - shell_sort2.cShell sort algorithm implementation + bubble_sort_2.cImplementation of Bubble sort algorithm + bubble_sort_recursion.cBubble sort algorithm implementation using recursion + insertion_sort.cInsertion sort algorithm implementation + insertion_sort_recursive.cInsertion sort algorithm implementation + merge_sort.cImplementation of merge sort algorithm + selection_sort.cSelection sort algorithm implementation + shell_sort2.cShell sort algorithm implementation diff --git a/globals_b.html b/globals_b.html index 563cf1e3..7f51dc46 100644 --- a/globals_b.html +++ b/globals_b.html @@ -111,6 +111,9 @@ $(document).ready(function(){initNavTree('globals_b.html',''); initResizable();
  • binarysearch2() : binary_search.c
  • +
  • bubble_sort() +: bubble_sort_2.c +
  • bubbleSort() : bubble_sort.c , bubble_sort_recursion.c diff --git a/globals_defs.html b/globals_defs.html index 0aba91ce..fae0d638 100644 --- a/globals_defs.html +++ b/globals_defs.html @@ -156,6 +156,7 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
  • MAX : client.c , server.c +, bubble_sort_2.c
  • max : kohonen_som_topology.c diff --git a/globals_func_b.html b/globals_func_b.html index df4bff60..689e9f47 100644 --- a/globals_func_b.html +++ b/globals_func_b.html @@ -105,6 +105,9 @@ $(document).ready(function(){initNavTree('globals_func_b.html',''); initResizabl
  • binarysearch2() : binary_search.c
  • +
  • bubble_sort() +: bubble_sort_2.c +
  • bubbleSort() : bubble_sort.c , bubble_sort_recursion.c diff --git a/globals_func_m.html b/globals_func_m.html index c47d5836..2ff89b69 100644 --- a/globals_func_m.html +++ b/globals_func_m.html @@ -168,6 +168,7 @@ $(document).ready(function(){initNavTree('globals_func_m.html',''); initResizabl , modified_binary_search.c , bead_sort.c , bubble_sort.c +, bubble_sort_2.c , bubble_sort_recursion.c , insertion_sort_recursive.c , merge_sort.c diff --git a/globals_func_t.html b/globals_func_t.html index 2438a362..fc649986 100644 --- a/globals_func_t.html +++ b/globals_func_t.html @@ -108,6 +108,7 @@ $(document).ready(function(){initNavTree('globals_func_t.html',''); initResizabl , binary_search.c , jump_search.c , bubble_sort.c +, bubble_sort_2.c , bubble_sort_recursion.c , insertion_sort.c , insertion_sort_recursive.c diff --git a/globals_m.html b/globals_m.html index f8cc667b..25f7f0cf 100644 --- a/globals_m.html +++ b/globals_m.html @@ -168,6 +168,7 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable(); , modified_binary_search.c , bead_sort.c , bubble_sort.c +, bubble_sort_2.c , bubble_sort_recursion.c , insertion_sort_recursive.c , merge_sort.c @@ -190,6 +191,7 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
  • MAX : client.c , server.c +, bubble_sort_2.c
  • max : kohonen_som_topology.c diff --git a/globals_t.html b/globals_t.html index cbc04798..a766bfc0 100644 --- a/globals_t.html +++ b/globals_t.html @@ -108,6 +108,7 @@ $(document).ready(function(){initNavTree('globals_t.html',''); initResizable(); , binary_search.c , jump_search.c , bubble_sort.c +, bubble_sort_2.c , bubble_sort_recursion.c , insertion_sort.c , insertion_sort_recursive.c diff --git a/navtreedata.js b/navtreedata.js index 8c1fb573..3be566e8 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -121,10 +121,10 @@ var NAVTREE = var NAVTREEINDEX = [ "annotated.html", -"d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456", -"d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305", -"dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9", -"index.html" +"d4/d7b/problem__6_2sol_8c.html", +"d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e", +"dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337", +"globals_u.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 72e97207..67a2e7fa 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -150,13 +150,18 @@ var NAVTREEINDEX0 = "d2/d6a/struct_graph_rep.html#a081038f30741c196b7d84fe79b4732c9":[14,0,16,2], "d2/d6a/struct_graph_rep.html#aaf306e1727ca6c84cc03635ef4ac4888":[14,0,16,1], "d2/d6a/struct_graph_rep.html#aeb803dced884357ef0c7ea59525e382b":[14,0,16,0], +"d2/d6d/bubble__sort__2_8c.html":[15,0,13,2], +"d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326":[15,0,13,2,0], +"d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281":[15,0,13,2,1], +"d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,2,3], +"d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,13,2,2], "d2/d71/struct_a_v_lnode.html":[14,0,4], "d2/d71/struct_a_v_lnode.html#a91349e8b477c6e9d45187997ca2e2a50":[14,0,4,2], "d2/d71/struct_a_v_lnode.html#aaf07c08df1ee92ae2512869a178a14d9":[14,0,4,3], "d2/d71/struct_a_v_lnode.html#ab3391d72c5ace9f85889430ce18383ef":[14,0,4,1], "d2/d71/struct_a_v_lnode.html#af7b887a7fffb15778d53e167a95e40d9":[14,0,4,0], -"d2/d83/merge__sort_8c.html":[15,0,13,5], -"d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,13,5,0], +"d2/d83/merge__sort_8c.html":[15,0,13,6], +"d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,13,6,0], "d2/d93/problem__8_2sol2_8c.html":[15,0,11,21,1], "d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[15,0,11,21,1,0], "d2/da8/bead__sort_8c.html":[15,0,13,0], @@ -244,10 +249,5 @@ var NAVTREEINDEX0 = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99":[14,0,23,3], "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d":[14,0,23,0], "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be":[14,0,23,1], -"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007":[14,0,23,4], -"d4/d7b/problem__6_2sol_8c.html":[15,0,11,19,0], -"d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,11,19,0,0], -"d4/d83/problem__401_2sol1_8c.html":[15,0,11,17,0], -"d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788":[15,0,11,17,0,7], -"d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,11,17,0,5] +"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007":[14,0,23,4] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index bd025732..841d798a 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,10 @@ var NAVTREEINDEX1 = { +"d4/d7b/problem__6_2sol_8c.html":[15,0,11,19,0], +"d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,11,19,0,0], +"d4/d83/problem__401_2sol1_8c.html":[15,0,11,17,0], +"d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788":[15,0,11,17,0,7], +"d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,11,17,0,5], "d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456":[15,0,11,17,0,4], "d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215":[15,0,11,17,0,3], "d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077":[15,0,11,17,0,1], @@ -49,11 +54,11 @@ var NAVTREEINDEX1 = "d4/dfe/struct_dict.html#add3f42ea66e92ce457a243d7534f5654":[14,0,9,1], "d5/d23/qr__decomposition_8c.html":[15,0,10,7], "d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,10,7,0], -"d5/d38/bubble__sort__recursion_8c.html":[15,0,13,2], -"d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[15,0,13,2,0], -"d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3":[15,0,13,2,2], -"d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002":[15,0,13,2,3], -"d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,13,2,1], +"d5/d38/bubble__sort__recursion_8c.html":[15,0,13,3], +"d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[15,0,13,3,0], +"d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3":[15,0,13,3,2], +"d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002":[15,0,13,3,3], +"d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,13,3,1], "d5/d3d/problem__5_2sol2_8c.html":[15,0,11,18,1], "d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,11,18,1,1], "d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f":[15,0,11,18,1,0], @@ -61,23 +66,23 @@ var NAVTREEINDEX1 = "d5/d4c/group__sorting.html":[13,5], "d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8":[13,5,1], "d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8":[15,0,13,0,1], -"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,13,5,3], -"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,13,7,3], +"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,13,6,3], +"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,13,8,3], "d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[13,5,8], "d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[13,5,0], "d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[15,0,13,0,0], "d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[13,5,6], -"d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[15,0,13,7,1], +"d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[15,0,13,8,1], +"d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[15,0,13,6,1], "d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[13,5,3], -"d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[15,0,13,5,1], "d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359":[13,5,5], -"d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359":[15,0,13,4,1], -"d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[15,0,13,5,2], +"d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359":[15,0,13,5,1], "d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[13,5,4], +"d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[15,0,13,6,2], "d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971":[15,0,13,0,2], "d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971":[13,5,2], +"d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[15,0,13,8,2], "d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[13,5,7], -"d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[15,0,13,7,2], "d5/d7c/problem__5_2sol3_8c.html":[15,0,11,18,2], "d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d":[15,0,11,18,2,0], "d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[15,0,11,18,2,2], @@ -200,8 +205,8 @@ var NAVTREEINDEX1 = "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md27":[3,1,3,1], "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md28":[3,1,3,2], "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md29":[3,1,3,3], -"d6/ded/shell__sort2_8c.html":[15,0,13,7], -"d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[15,0,13,7,0], +"d6/ded/shell__sort2_8c.html":[15,0,13,8], +"d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[15,0,13,8,0], "d6/df3/graph_8h_source.html":[15,0,2,4,0], "d7/d0c/hash__sdbm_8c.html":[15,0,7,3], "d7/d0c/hash__sdbm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,7,3,0], @@ -244,10 +249,5 @@ var NAVTREEINDEX1 = "d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6":[15,0,11,5,0,1], "d7/d98/spirograph_8c.html":[15,0,6,0], "d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3":[15,0,6,0,2], -"d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,6,0,1], -"d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e":[15,0,6,0,0], -"d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f":[15,0,6,0,3], -"d7/db5/md_exercism__r_e_a_d_m_e.html":[8], -"d7/db5/md_exercism__r_e_a_d_m_e.html#autotoc_md58":[3], -"d7/dd3/problem__3_2sol1_8c.html":[15,0,11,15,0] +"d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,6,0,1] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 044f6610..6bb80f16 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,10 @@ var NAVTREEINDEX2 = { +"d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e":[15,0,6,0,0], +"d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f":[15,0,6,0,3], +"d7/db5/md_exercism__r_e_a_d_m_e.html":[8], +"d7/db5/md_exercism__r_e_a_d_m_e.html#autotoc_md58":[3], +"d7/dd3/problem__3_2sol1_8c.html":[15,0,11,15,0], "d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305":[15,0,11,15,0,0], "d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,11,15,0,1], "d7/dd8/c__atoi__str__to__integer_8c.html":[15,0,1,0], @@ -182,10 +187,10 @@ var NAVTREEINDEX2 = "db/dd5/prime__seive_8c.html":[15,0,9,8], "db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7":[15,0,9,8,4], "db/ddb/hello__world_8h_source.html":[15,0,4,1,0], -"db/ddf/insertion__sort_8c.html":[15,0,13,3], -"db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb":[15,0,13,3,0], -"db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,3,2], -"db/ddf/insertion__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,3,1], +"db/ddf/insertion__sort_8c.html":[15,0,13,4], +"db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb":[15,0,13,4,0], +"db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,4,2], +"db/ddf/insertion__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,4,1], "dc/d18/structsudoku.html":[13,4,0], "dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56":[13,4,0,2], "dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129":[13,4,0,1], @@ -229,8 +234,8 @@ var NAVTREEINDEX2 = "dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd":[13,0,7,2], "dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b":[15,0,5,0,4], "dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b":[13,0,7,3], -"dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1":[13,0,7,6], "dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1":[15,0,5,1,3], +"dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1":[13,0,7,6], "dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html":[12], "dc/de3/hash__set_8h_source.html":[15,0,2,5,0], "dc/de5/structsubset.html":[14,0,34], @@ -244,10 +249,5 @@ var NAVTREEINDEX2 = "dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853":[14,0,32,1], "dd/d08/newton__raphson__root_8c.html":[15,0,10,2], "dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,10,2,3], -"dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925":[15,0,10,2,2], -"dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337":[15,0,10,2,1], -"dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689":[15,0,10,2,0], -"dd/d10/struct_stack.html":[14,0,33], -"dd/d10/struct_stack.html#a2a9b92a4668113debfb801b39a41fea2":[14,0,33,0], -"dd/d10/struct_stack.html#a6cd56fb14cbfe1d0e76e3b1a1bbbde28":[14,0,33,1] +"dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925":[15,0,10,2,2] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 921763aa..cfd8e238 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,10 @@ var NAVTREEINDEX3 = { +"dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337":[15,0,10,2,1], +"dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689":[15,0,10,2,0], +"dd/d10/struct_stack.html":[14,0,33], +"dd/d10/struct_stack.html#a2a9b92a4668113debfb801b39a41fea2":[14,0,33,0], +"dd/d10/struct_stack.html#a6cd56fb14cbfe1d0e76e3b1a1bbbde28":[14,0,33,1], "dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9":[14,0,33,3], "dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a":[14,0,33,2], "dd/d11/test__malloc__dbg_8c.html":[15,0,3,2], @@ -48,9 +53,9 @@ var NAVTREEINDEX3 = "dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,11,7,0,2], "dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[15,0,11,7,0,1], "dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75":[15,0,11,7,0,0], -"de/d0c/insertion__sort__recursive_8c.html":[15,0,13,4], -"de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,4,2], -"de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,4,0], +"de/d0c/insertion__sort__recursive_8c.html":[15,0,13,5], +"de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,5,2], +"de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,5,0], "de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html":[5], "de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md35":[0], "de/d58/structquaternion__.html":[13,0,7,0], @@ -68,8 +73,8 @@ var NAVTREEINDEX3 = "de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84":[13,0,5,2], "de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e":[15,0,5,2,5], "de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e":[13,0,5,5], -"de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e":[13,0,5,4], "de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e":[15,0,5,2,3], +"de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e":[13,0,5,4], "de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849":[15,0,5,2,1], "de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849":[13,0,5,3], "de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de":[15,0,5,2,7], @@ -112,11 +117,11 @@ var NAVTREEINDEX3 = "df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,2,1,2,6], "df/d58/md_leetcode__r_e_a_d_m_e.html":[10], "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md60":[4], -"df/d83/selection__sort_8c.html":[15,0,13,6], -"df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,6,3], -"df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,6,0], -"df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[15,0,13,6,2], -"df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617":[15,0,13,6,1], +"df/d83/selection__sort_8c.html":[15,0,13,7], +"df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,13,7,3], +"df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,13,7,0], +"df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[15,0,13,7,2], +"df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617":[15,0,13,7,1], "df/d86/structterm.html":[14,0,37], "df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74":[14,0,37,2], "df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b":[14,0,37,0], @@ -196,8 +201,8 @@ var NAVTREEINDEX3 = "files.html":[15,0], "functions.html":[14,2,0], "functions_vars.html":[14,2,1], -"globals.html":[15,1,0,0], "globals.html":[15,1,0], +"globals.html":[15,1,0,0], "globals_a.html":[15,1,0,1], "globals_b.html":[15,1,0,2], "globals_c.html":[15,1,0,3], @@ -205,8 +210,8 @@ var NAVTREEINDEX3 = "globals_defs.html":[15,1,4], "globals_e.html":[15,1,0,5], "globals_f.html":[15,1,0,6], -"globals_func.html":[15,1,1], "globals_func.html":[15,1,1,0], +"globals_func.html":[15,1,1], "globals_func_a.html":[15,1,1,1], "globals_func_b.html":[15,1,1,2], "globals_func_c.html":[15,1,1,3], @@ -244,10 +249,5 @@ var NAVTREEINDEX3 = "globals_r.html":[15,1,0,18], "globals_s.html":[15,1,0,19], "globals_t.html":[15,1,0,20], -"globals_type.html":[15,1,3], -"globals_u.html":[15,1,0,21], -"globals_v.html":[15,1,0,22], -"globals_vars.html":[15,1,2], -"globals_x.html":[15,1,0,23], -"index.html":[0] +"globals_type.html":[15,1,3] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index 4a53dca5..a90b9d7e 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,10 @@ var NAVTREEINDEX4 = { +"globals_u.html":[15,1,0,21], +"globals_v.html":[15,1,0,22], +"globals_vars.html":[15,1,2], +"globals_x.html":[15,1,0,23], +"index.html":[0], "index.html":[], "index.html#autotoc_md62":[0,0], "index.html#autotoc_md63":[0,1], diff --git a/search/all_10.js b/search/all_10.js index fe1417e1..4f7db8e7 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,15 +1,15 @@ var searchData= [ - ['observation_265',['observation',['../d1/d5e/structobservation.html',1,'']]], - ['octal_5fto_5fhexadecimal_2ec_266',['octal_to_hexadecimal.c',['../d0/d8a/octal__to__hexadecimal_8c.html',1,'']]], - ['octaltodecimal_267',['octalToDecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a86a4edb605c2a03d9175c59de679347d',1,'octal_to_hexadecimal.c']]], - ['octaltohexadecimal_268',['octalToHexadecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a042035b4ba7b92974f0edf6eb1b0cbe1',1,'octal_to_hexadecimal.c']]], - ['ode_5fforward_5feuler_2ec_269',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]], - ['ode_5fmidpoint_5feuler_2ec_270',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]], - ['ode_5fsemi_5fimplicit_5feuler_2ec_271',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]], - ['ok_272',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]], - ['okbox_273',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]], - ['okcol_274',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]], - ['okrow_275',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]], - ['order_276',['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']]] + ['observation_267',['observation',['../d1/d5e/structobservation.html',1,'']]], + ['octal_5fto_5fhexadecimal_2ec_268',['octal_to_hexadecimal.c',['../d0/d8a/octal__to__hexadecimal_8c.html',1,'']]], + ['octaltodecimal_269',['octalToDecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a86a4edb605c2a03d9175c59de679347d',1,'octal_to_hexadecimal.c']]], + ['octaltohexadecimal_270',['octalToHexadecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a042035b4ba7b92974f0edf6eb1b0cbe1',1,'octal_to_hexadecimal.c']]], + ['ode_5fforward_5feuler_2ec_271',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]], + ['ode_5fmidpoint_5feuler_2ec_272',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]], + ['ode_5fsemi_5fimplicit_5feuler_2ec_273',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]], + ['ok_274',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]], + ['okbox_275',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]], + ['okcol_276',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]], + ['okrow_277',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]], + ['order_278',['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/all_11.js b/search/all_11.js index 0b55dc45..c511c7f6 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,32 +1,32 @@ var searchData= [ - ['palindrome_2ec_277',['palindrome.c',['../df/d16/palindrome_8c.html',1,'']]], - ['pid_278',['pid',['../d0/d43/structpid.html',1,'']]], - ['pitch_279',['pitch',['../d2/de8/structeuler__.html#aa71f9aa6dfa32d8014b2d54ab8410e0b',1,'euler_']]], - ['poly_5fadd_280',['poly_add',['../d0/dcb/poly__add_8c.html#a6ff38afe4720527c9513139cbab460af',1,'poly_add.c']]], - ['poly_5fadd_2ec_281',['poly_add.c',['../d0/dcb/poly__add_8c.html',1,'']]], - ['poly_5ffunction_282',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]], - ['pop_283',['pop',['../db/d0c/infix__to__postfix_8c.html#a940cdcd27c40699eebb4ef113b2d9451',1,'infix_to_postfix.c']]], - ['port_284',['PORT',['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_client.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): server.c'],['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): client.c']]], - ['postorder_5fdisplay_285',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]], - ['pow_286',['pow',['../df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74',1,'term']]], - ['preorder_5fdisplay_287',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]], - ['prev_288',['prev',['../d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25',1,'list']]], - ['prev_5fdigit_289',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]], - ['previous_290',['previous',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3',1,'MEMORY_INFORMATION']]], - ['prime_291',['prime',['../d1/ded/group__misc.html#gac1a7a8e00eeb590511465c28fae16e54',1,'prime_seive.c']]], - ['prime_2ec_292',['prime.c',['../da/d93/prime_8c.html',1,'']]], - ['prime_5fseive_2ec_293',['prime_seive.c',['../db/dd5/prime__seive_8c.html',1,'']]], - ['print_294',['print',['../dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0',1,'print(List *list): doubly_linked_list.c'],['../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_295',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]], - ['print_5fnumber_296',['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']]], - ['print_5fvector_297',['print_vector',['../de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e',1,'vectors_3d.c']]], - ['printeps_298',['printEPS',['../d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a',1,'k_means_clustering.c']]], - ['printleaks_299',['printLeaks',['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks(): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void): malloc_dbg.c']]], - ['problem_300',['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']]], - ['projecteuler_301',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]], - ['propagate_302',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]], - ['ptr_303',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]], - ['purge_304',['purge',['../da/d02/binary__search__tree_8c.html#a01151353aa2d9688934ed39208133241',1,'binary_search_tree.c']]], - ['push_305',['push',['../db/d0c/infix__to__postfix_8c.html#a613462735d30cae1b85b606ecab30554',1,'infix_to_postfix.c']]] + ['palindrome_2ec_279',['palindrome.c',['../df/d16/palindrome_8c.html',1,'']]], + ['pid_280',['pid',['../d0/d43/structpid.html',1,'']]], + ['pitch_281',['pitch',['../d2/de8/structeuler__.html#aa71f9aa6dfa32d8014b2d54ab8410e0b',1,'euler_']]], + ['poly_5fadd_282',['poly_add',['../d0/dcb/poly__add_8c.html#a6ff38afe4720527c9513139cbab460af',1,'poly_add.c']]], + ['poly_5fadd_2ec_283',['poly_add.c',['../d0/dcb/poly__add_8c.html',1,'']]], + ['poly_5ffunction_284',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]], + ['pop_285',['pop',['../db/d0c/infix__to__postfix_8c.html#a940cdcd27c40699eebb4ef113b2d9451',1,'infix_to_postfix.c']]], + ['port_286',['PORT',['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_client.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): server.c'],['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): client.c']]], + ['postorder_5fdisplay_287',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]], + ['pow_288',['pow',['../df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74',1,'term']]], + ['preorder_5fdisplay_289',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]], + ['prev_290',['prev',['../d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25',1,'list']]], + ['prev_5fdigit_291',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]], + ['previous_292',['previous',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3',1,'MEMORY_INFORMATION']]], + ['prime_293',['prime',['../d1/ded/group__misc.html#gac1a7a8e00eeb590511465c28fae16e54',1,'prime_seive.c']]], + ['prime_2ec_294',['prime.c',['../da/d93/prime_8c.html',1,'']]], + ['prime_5fseive_2ec_295',['prime_seive.c',['../db/dd5/prime__seive_8c.html',1,'']]], + ['print_296',['print',['../dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0',1,'print(List *list): doubly_linked_list.c'],['../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_297',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]], + ['print_5fnumber_298',['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']]], + ['print_5fvector_299',['print_vector',['../de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e',1,'vectors_3d.c']]], + ['printeps_300',['printEPS',['../d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a',1,'k_means_clustering.c']]], + ['printleaks_301',['printLeaks',['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks(): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void): malloc_dbg.c']]], + ['problem_302',['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']]], + ['projecteuler_303',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]], + ['propagate_304',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]], + ['ptr_305',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]], + ['purge_306',['purge',['../da/d02/binary__search__tree_8c.html#a01151353aa2d9688934ed39208133241',1,'binary_search_tree.c']]], + ['push_307',['push',['../db/d0c/infix__to__postfix_8c.html#a613462735d30cae1b85b606ecab30554',1,'infix_to_postfix.c']]] ]; diff --git a/search/all_12.js b/search/all_12.js index 350f7ec1..052a2fa9 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['q0_306',['q0',['../de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2',1,'quaternion_']]], - ['qr_5fdecompose_307',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]], - ['qr_5fdecompose_2eh_308',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]], - ['qr_5fdecomposition_2ec_309',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]], - ['qr_5feigen_5fvalues_2ec_310',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]], - ['quat_5ffrom_5feuler_311',['quat_from_euler',['../dc/d9a/group__quats.html#ga4779f448daaf806ce5e750c13b3e0965',1,'quaternions.c']]], - ['quaternion_312',['quaternion',['../dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b',1,'geometry_datatypes.h']]], - ['quaternion_5f_313',['quaternion_',['../de/d58/structquaternion__.html',1,'']]], - ['quaternion_5fmultiply_314',['quaternion_multiply',['../dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1',1,'quaternions.c']]], - ['quaternions_2ec_315',['quaternions.c',['../df/d98/quaternions_8c.html',1,'']]], - ['queue_316',['queue',['../d2/d36/structqueue.html',1,'']]], - ['queuerep_317',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]] + ['q0_308',['q0',['../de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2',1,'quaternion_']]], + ['qr_5fdecompose_309',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]], + ['qr_5fdecompose_2eh_310',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]], + ['qr_5fdecomposition_2ec_311',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]], + ['qr_5feigen_5fvalues_2ec_312',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]], + ['quat_5ffrom_5feuler_313',['quat_from_euler',['../dc/d9a/group__quats.html#ga4779f448daaf806ce5e750c13b3e0965',1,'quaternions.c']]], + ['quaternion_314',['quaternion',['../dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b',1,'geometry_datatypes.h']]], + ['quaternion_5f_315',['quaternion_',['../de/d58/structquaternion__.html',1,'']]], + ['quaternion_5fmultiply_316',['quaternion_multiply',['../dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1',1,'quaternions.c']]], + ['quaternions_2ec_317',['quaternions.c',['../df/d98/quaternions_8c.html',1,'']]], + ['queue_318',['queue',['../d2/d36/structqueue.html',1,'']]], + ['queuerep_319',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]] ]; diff --git a/search/all_13.js b/search/all_13.js index cb1318af..2512a8f6 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,14 +1,14 @@ var searchData= [ - ['real_318',['real',['../d7/dfd/structdual__quat__.html#ad663036ace6a586f90a2f89386f7731a',1,'dual_quat_']]], - ['realtime_5fstats_2ec_319',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]], - ['recursioninsertionsort_320',['RecursionInsertionSort',['../d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359',1,'insertion_sort_recursive.c']]], - ['remove_5fdigits_321',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]], - ['right_322',['right',['../d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c',1,'node']]], - ['rlink_323',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]], - ['roll_324',['roll',['../d2/de8/structeuler__.html#a3f1b77e489be443a8d84a84082b8092e',1,'euler_']]], - ['root_325',['root',['../dd/d06/structsegment__tree.html#aa18d7cb422873a807707b26448dce7cd',1,'segment_tree']]], - ['row1_326',['row1',['../d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e',1,'mat_3x3_']]], - ['row2_327',['row2',['../d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf',1,'mat_3x3_']]], - ['row3_328',['row3',['../d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563',1,'mat_3x3_']]] + ['real_320',['real',['../d7/dfd/structdual__quat__.html#ad663036ace6a586f90a2f89386f7731a',1,'dual_quat_']]], + ['realtime_5fstats_2ec_321',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]], + ['recursioninsertionsort_322',['RecursionInsertionSort',['../d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359',1,'insertion_sort_recursive.c']]], + ['remove_5fdigits_323',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]], + ['right_324',['right',['../d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c',1,'node']]], + ['rlink_325',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]], + ['roll_326',['roll',['../d2/de8/structeuler__.html#a3f1b77e489be443a8d84a84082b8092e',1,'euler_']]], + ['root_327',['root',['../dd/d06/structsegment__tree.html#aa18d7cb422873a807707b26448dce7cd',1,'segment_tree']]], + ['row1_328',['row1',['../d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e',1,'mat_3x3_']]], + ['row2_329',['row2',['../d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf',1,'mat_3x3_']]], + ['row3_330',['row3',['../d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563',1,'mat_3x3_']]] ]; diff --git a/search/all_14.js b/search/all_14.js index 0a398f79..d2f252b6 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,51 +1,51 @@ var searchData= [ - ['sa_329',['SA',['../d1/d20/server_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): server.c'],['../dd/d93/client_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): client.c']]], - ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_330',['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_331',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]], - ['save_5fnd_5fdata_332',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]], - ['save_5fu_5fmatrix_333',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]], - ['sdbm_334',['sdbm',['../d7/d3b/group__hash.html#ga8ab8eeb35f8ccfcad89091b5fdd4f605',1,'hash_sdbm.c']]], - ['search_335',['search',['../dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b',1,'search(List *list, double value): doubly_linked_list.c'],['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'search(node *root, int ele): threaded_binary_trees.c']]], - ['segment_5ftree_336',['segment_tree',['../dd/d06/structsegment__tree.html',1,'segment_tree'],['../da/da0/segment__tree_8c.html#ac206721972f739510cb11f7c0a6a8f63',1,'segment_tree(): segment_tree.c']]], - ['segment_5ftree_2ec_337',['segment_tree.c',['../da/da0/segment__tree_8c.html',1,'']]], - ['segment_5ftree_5fbuild_338',['segment_tree_build',['../da/da0/segment__tree_8c.html#aae59daf9a0dc33f8cbc7a525a616ee75',1,'segment_tree.c']]], - ['segment_5ftree_5fdispose_339',['segment_tree_dispose',['../da/da0/segment__tree_8c.html#af20a9f373083d3f701e1cd92560cef01',1,'segment_tree.c']]], - ['segment_5ftree_5finit_340',['segment_tree_init',['../da/da0/segment__tree_8c.html#acecc34fd89923ab41dcee3a779622816',1,'segment_tree.c']]], - ['segment_5ftree_5fprint_5fint_341',['segment_tree_print_int',['../da/da0/segment__tree_8c.html#a776abfa81cde9016a2885dca7cfc05ab',1,'segment_tree.c']]], - ['segment_5ftree_5fquery_342',['segment_tree_query',['../da/da0/segment__tree_8c.html#af61bd96660cb53f49f28d60a5f1d0c91',1,'segment_tree.c']]], - ['segment_5ftree_5fupdate_343',['segment_tree_update',['../da/da0/segment__tree_8c.html#a1e81a9bbf01716f1b4fb27ef36a9098c',1,'segment_tree.c']]], - ['selection_5fsort_2ec_344',['selection_sort.c',['../df/d83/selection__sort_8c.html',1,'']]], - ['selectionsort_345',['selectionSort',['../df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617',1,'selection_sort.c']]], - ['semi_5fimplicit_5feuler_346',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]], - ['semi_5fimplicit_5feuler_5fstep_347',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]], - ['server_2ec_348',['server.c',['../d1/d20/server_8c.html',1,'']]], - ['shell_5fsort_349',['shell_sort',['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c'],['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c']]], - ['shell_5fsort2_2ec_350',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]], - ['show_5fdata_351',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]], - ['sigma_352',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]], - ['sigma2_353',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]], - ['simple_20generic_20stack_354',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]], - ['so1_2ec_355',['so1.c',['../d0/d7f/so1_8c.html',1,'']]], - ['sol_2ec_356',['sol.c',['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)'],['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)']]], - ['sol1_2ec_357',['sol1.c',['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_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)'],['../da/d35/problem__1_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)'],['../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)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)']]], - ['sol2_2ec_358',['sol2.c',['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_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)'],['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d6/d64/problem__7_2sol2_8c.html',1,'(Global Namespace)']]], - ['sol3_2ec_359',['sol3.c',['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)'],['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)']]], - ['sol4_2ec_360',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]], - ['solve_361',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]], - ['sorting_20algorithms_362',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]], - ['spirograph_363',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]], - ['spirograph_2ec_364',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]], - ['stack_365',['Stack',['../dd/d10/struct_stack.html',1,'']]], - ['start_366',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]], - ['stats_5fcomputer1_367',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]], - ['stats_5fcomputer2_368',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]], - ['strong_5fnumber_2ec_369',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]], - ['subset_370',['subset',['../dc/de5/structsubset.html',1,'']]], - ['sudoku_371',['sudoku',['../dc/d18/structsudoku.html',1,'']]], - ['sudoku_20solver_372',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]], - ['sudoku_5fsolver_2ec_373',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]], - ['sum_5fof_5fdivisors_374',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]], - ['sum_5fof_5fprimes_375',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]], - ['swap_376',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort_recursion.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b): merge_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): selection_sort.c']]] + ['sa_331',['SA',['../d1/d20/server_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): server.c'],['../dd/d93/client_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): client.c']]], + ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_332',['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_333',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]], + ['save_5fnd_5fdata_334',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]], + ['save_5fu_5fmatrix_335',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]], + ['sdbm_336',['sdbm',['../d7/d3b/group__hash.html#ga8ab8eeb35f8ccfcad89091b5fdd4f605',1,'hash_sdbm.c']]], + ['search_337',['search',['../dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b',1,'search(List *list, double value): doubly_linked_list.c'],['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'search(node *root, int ele): threaded_binary_trees.c']]], + ['segment_5ftree_338',['segment_tree',['../dd/d06/structsegment__tree.html',1,'segment_tree'],['../da/da0/segment__tree_8c.html#ac206721972f739510cb11f7c0a6a8f63',1,'segment_tree(): segment_tree.c']]], + ['segment_5ftree_2ec_339',['segment_tree.c',['../da/da0/segment__tree_8c.html',1,'']]], + ['segment_5ftree_5fbuild_340',['segment_tree_build',['../da/da0/segment__tree_8c.html#aae59daf9a0dc33f8cbc7a525a616ee75',1,'segment_tree.c']]], + ['segment_5ftree_5fdispose_341',['segment_tree_dispose',['../da/da0/segment__tree_8c.html#af20a9f373083d3f701e1cd92560cef01',1,'segment_tree.c']]], + ['segment_5ftree_5finit_342',['segment_tree_init',['../da/da0/segment__tree_8c.html#acecc34fd89923ab41dcee3a779622816',1,'segment_tree.c']]], + ['segment_5ftree_5fprint_5fint_343',['segment_tree_print_int',['../da/da0/segment__tree_8c.html#a776abfa81cde9016a2885dca7cfc05ab',1,'segment_tree.c']]], + ['segment_5ftree_5fquery_344',['segment_tree_query',['../da/da0/segment__tree_8c.html#af61bd96660cb53f49f28d60a5f1d0c91',1,'segment_tree.c']]], + ['segment_5ftree_5fupdate_345',['segment_tree_update',['../da/da0/segment__tree_8c.html#a1e81a9bbf01716f1b4fb27ef36a9098c',1,'segment_tree.c']]], + ['selection_5fsort_2ec_346',['selection_sort.c',['../df/d83/selection__sort_8c.html',1,'']]], + ['selectionsort_347',['selectionSort',['../df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617',1,'selection_sort.c']]], + ['semi_5fimplicit_5feuler_348',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]], + ['semi_5fimplicit_5feuler_5fstep_349',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]], + ['server_2ec_350',['server.c',['../d1/d20/server_8c.html',1,'']]], + ['shell_5fsort_351',['shell_sort',['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN): shell_sort2.c'],['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN): sol1.c']]], + ['shell_5fsort2_2ec_352',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]], + ['show_5fdata_353',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]], + ['sigma_354',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]], + ['sigma2_355',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]], + ['simple_20generic_20stack_356',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]], + ['so1_2ec_357',['so1.c',['../d0/d7f/so1_8c.html',1,'']]], + ['sol_2ec_358',['sol.c',['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)'],['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)']]], + ['sol1_2ec_359',['sol1.c',['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_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)'],['../da/d35/problem__1_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)'],['../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)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)']]], + ['sol2_2ec_360',['sol2.c',['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_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)'],['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d6/d64/problem__7_2sol2_8c.html',1,'(Global Namespace)']]], + ['sol3_2ec_361',['sol3.c',['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)'],['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)']]], + ['sol4_2ec_362',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]], + ['solve_363',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]], + ['sorting_20algorithms_364',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]], + ['spirograph_365',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]], + ['spirograph_2ec_366',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]], + ['stack_367',['Stack',['../dd/d10/struct_stack.html',1,'']]], + ['start_368',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]], + ['stats_5fcomputer1_369',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]], + ['stats_5fcomputer2_370',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]], + ['strong_5fnumber_2ec_371',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]], + ['subset_372',['subset',['../dc/de5/structsubset.html',1,'']]], + ['sudoku_373',['sudoku',['../dc/d18/structsudoku.html',1,'']]], + ['sudoku_20solver_374',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]], + ['sudoku_5fsolver_2ec_375',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]], + ['sum_5fof_5fdivisors_376',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]], + ['sum_5fof_5fprimes_377',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]], + ['swap_378',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort_recursion.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b): merge_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): selection_sort.c']]] ]; diff --git a/search/all_15.js b/search/all_15.js index a96d3cf3..846c0b92 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,29 +1,29 @@ var searchData= [ - ['t_377',['T',['../d5/d7e/struct_t.html',1,'']]], - ['term_378',['term',['../df/d86/structterm.html',1,'']]], - ['test_379',['test',['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): selection_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort_recursive.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort_recursion.c'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): decimal_to_binary_recursion.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): segment_tree.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test(): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): strong_number.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_380',['test1',['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../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/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]], - ['test2_381',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): k_means_clustering.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'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]], - ['test3_382',['test3',['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c'],['../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/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c']]], - ['test_5f2d_5fclasses_383',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]], - ['test_5f3d_5fclasses_384',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]], - ['test_5f3d_5fclasses1_385',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]], - ['test_5f3d_5fclasses2_386',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]], - ['test_5fadler32_387',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]], - ['test_5fc_5fatoi_388',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]], - ['test_5fcircle_389',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]], - ['test_5fcrc32_390',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]], - ['test_5fdjb2_391',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]], - ['test_5ffunction_392',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]], - ['test_5flamniscate_393',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]], - ['test_5fmalloc_5fdbg_2ec_394',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]], - ['test_5fsdbm_395',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]], - ['test_5fxor8_396',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]], - ['the_20algorithms_20_2d_20c_397',['The Algorithms - C',['../index.html',1,'']]], - ['threaded_5fbinary_5ftrees_2ec_398',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]], - ['tnode_399',['tnode',['../d8/d7a/structtnode.html',1,'']]], - ['to_5fpolar_400',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]], - ['tos_401',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]], - ['trienode_402',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]] + ['t_379',['T',['../d5/d7e/struct_t.html',1,'']]], + ['term_380',['term',['../df/d86/structterm.html',1,'']]], + ['test_381',['test',['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): selection_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort_recursive.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort_recursion.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): bubble_sort_2.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): decimal_to_binary_recursion.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): segment_tree.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test(): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): strong_number.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'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort.c']]], + ['test1_382',['test1',['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): kohonen_som_trace.c'],['../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/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]], + ['test2_383',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): k_means_clustering.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'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]], + ['test3_384',['test3',['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3(): kohonen_som_trace.c'],['../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/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c']]], + ['test_5f2d_5fclasses_385',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]], + ['test_5f3d_5fclasses_386',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]], + ['test_5f3d_5fclasses1_387',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]], + ['test_5f3d_5fclasses2_388',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]], + ['test_5fadler32_389',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]], + ['test_5fc_5fatoi_390',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]], + ['test_5fcircle_391',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]], + ['test_5fcrc32_392',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]], + ['test_5fdjb2_393',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]], + ['test_5ffunction_394',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]], + ['test_5flamniscate_395',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]], + ['test_5fmalloc_5fdbg_2ec_396',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]], + ['test_5fsdbm_397',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]], + ['test_5fxor8_398',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]], + ['the_20algorithms_20_2d_20c_399',['The Algorithms - C',['../index.html',1,'']]], + ['threaded_5fbinary_5ftrees_2ec_400',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]], + ['tnode_401',['tnode',['../d8/d7a/structtnode.html',1,'']]], + ['to_5fpolar_402',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]], + ['tos_403',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]], + ['trienode_404',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]] ]; diff --git a/search/all_16.js b/search/all_16.js index 31dfed46..33f23eac 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,7 +1,7 @@ var searchData= [ - ['udp_5fclient_2ec_403',['udp_client.c',['../da/de6/udp__client_8c.html',1,'']]], - ['udp_5fserver_2ec_404',['udp_server.c',['../d8/dca/udp__server_8c.html',1,'']]], - ['union_5ffind_2ec_405',['union_find.c',['../df/df3/union__find_8c.html',1,'']]], - ['unit_5fvec_406',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]] + ['udp_5fclient_2ec_405',['udp_client.c',['../da/de6/udp__client_8c.html',1,'']]], + ['udp_5fserver_2ec_406',['udp_server.c',['../d8/dca/udp__server_8c.html',1,'']]], + ['union_5ffind_2ec_407',['union_find.c',['../df/df3/union__find_8c.html',1,'']]], + ['unit_5fvec_408',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]] ]; diff --git a/search/all_17.js b/search/all_17.js index c9496c2e..96109b0f 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,14 +1,14 @@ var searchData= [ - ['value_407',['value',['../d8/d10/structlist.html#a5363bdc0495ab9ef0ed587c99b9a2b41',1,'list::value()'],['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int::value()']]], - ['vec_5f3d_408',['vec_3d',['../de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270',1,'geometry_datatypes.h']]], - ['vec_5f3d_5f_409',['vec_3d_',['../d5/db4/structvec__3d__.html',1,'']]], - ['vector_5fadd_410',['vector_add',['../de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4',1,'vectors_3d.c']]], - ['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_5fnorm_413',['vector_norm',['../de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de',1,'vectors_3d.c']]], - ['vector_5fprod_414',['vector_prod',['../de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5',1,'vectors_3d.c']]], - ['vector_5fproj_415',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]], - ['vector_5fsub_416',['vector_sub',['../de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc',1,'vector_sub(const vec_3d *a, const vec_3d *b): vectors_3d.c'],['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'vector_sub(double *a, double *b, double *out, int L): qr_decompose.h']]], - ['vectors_5f3d_2ec_417',['vectors_3d.c',['../d5/db8/vectors__3d_8c.html',1,'']]] + ['value_409',['value',['../d8/d10/structlist.html#a5363bdc0495ab9ef0ed587c99b9a2b41',1,'list::value()'],['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int::value()']]], + ['vec_5f3d_410',['vec_3d',['../de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270',1,'geometry_datatypes.h']]], + ['vec_5f3d_5f_411',['vec_3d_',['../d5/db4/structvec__3d__.html',1,'']]], + ['vector_5fadd_412',['vector_add',['../de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4',1,'vectors_3d.c']]], + ['vector_5fdot_413',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]], + ['vector_5fmag_414',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]], + ['vector_5fnorm_415',['vector_norm',['../de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de',1,'vectors_3d.c']]], + ['vector_5fprod_416',['vector_prod',['../de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5',1,'vectors_3d.c']]], + ['vector_5fproj_417',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]], + ['vector_5fsub_418',['vector_sub',['../de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc',1,'vector_sub(const vec_3d *a, const vec_3d *b): vectors_3d.c'],['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'vector_sub(double *a, double *b, double *out, int L): qr_decompose.h']]], + ['vectors_5f3d_2ec_419',['vectors_3d.c',['../d5/db8/vectors__3d_8c.html',1,'']]] ]; diff --git a/search/all_18.js b/search/all_18.js index b3be3a7f..ed69ab58 100644 --- a/search/all_18.js +++ b/search/all_18.js @@ -1,6 +1,6 @@ var searchData= [ - ['w_418',['w',['../de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f',1,'quaternion_']]], - ['weights_419',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]], - ['word_5fcount_5fword_420',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]] + ['w_420',['w',['../de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f',1,'quaternion_']]], + ['weights_421',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]], + ['word_5fcount_5fword_422',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]] ]; diff --git a/search/all_19.js b/search/all_19.js index 46d48631..67728bdf 100644 --- a/search/all_19.js +++ b/search/all_19.js @@ -1,5 +1,5 @@ var searchData= [ - ['x_421',['x',['../d5/db4/structvec__3d__.html#a53462a5a195c9e16fb584f73fd66c3d0',1,'vec_3d_::x()'],['../d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade',1,'observation::x()'],['../d1/d99/structcluster.html#a13278ef636c1d9bd9ce8fad736f4c570',1,'cluster::x()']]], - ['xor8_422',['xor8',['../d7/d3b/group__hash.html#gae4836b42b998b336298f3b19dcc9cdeb',1,'hash_xor8.c']]] + ['x_423',['x',['../d5/db4/structvec__3d__.html#a53462a5a195c9e16fb584f73fd66c3d0',1,'vec_3d_::x()'],['../d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade',1,'observation::x()'],['../d1/d99/structcluster.html#a13278ef636c1d9bd9ce8fad736f4c570',1,'cluster::x()']]], + ['xor8_424',['xor8',['../d7/d3b/group__hash.html#gae4836b42b998b336298f3b19dcc9cdeb',1,'hash_xor8.c']]] ]; diff --git a/search/all_1a.js b/search/all_1a.js index 7fe3dff0..b2cbff85 100644 --- a/search/all_1a.js +++ b/search/all_1a.js @@ -1,5 +1,5 @@ var searchData= [ - ['y_423',['y',['../d5/db4/structvec__3d__.html#a76098d39a382838df3b4b48c3443413b',1,'vec_3d_::y()'],['../d1/d5e/structobservation.html#ab6be1fa7024b2d5f3a30d6c6b70efdd7',1,'observation::y()'],['../d1/d99/structcluster.html#a10fa7010c12d0f03a422d68321495479',1,'cluster::y()']]], - ['yaw_424',['yaw',['../d2/de8/structeuler__.html#aad52507cc423ec49847471f6f15dd9d7',1,'euler_']]] + ['y_425',['y',['../d5/db4/structvec__3d__.html#a76098d39a382838df3b4b48c3443413b',1,'vec_3d_::y()'],['../d1/d5e/structobservation.html#ab6be1fa7024b2d5f3a30d6c6b70efdd7',1,'observation::y()'],['../d1/d99/structcluster.html#a10fa7010c12d0f03a422d68321495479',1,'cluster::y()']]], + ['yaw_426',['yaw',['../d2/de8/structeuler__.html#aad52507cc423ec49847471f6f15dd9d7',1,'euler_']]] ]; diff --git a/search/all_1b.js b/search/all_1b.js index fca7c324..827886df 100644 --- a/search/all_1b.js +++ b/search/all_1b.js @@ -1,4 +1,4 @@ var searchData= [ - ['z_425',['z',['../d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6',1,'vec_3d_']]] + ['z_427',['z',['../d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6',1,'vec_3d_']]] ]; diff --git a/search/all_3.js b/search/all_3.js index 6f3c65e0..c924dca3 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -11,8 +11,10 @@ var searchData= ['binarysearch1_35',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]], ['binarysearch2_36',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]], ['bstiterator_37',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]], - ['bubble_5fsort_2ec_38',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]], - ['bubble_5fsort_5frecursion_2ec_39',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]], - ['bubblesort_40',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort_recursion.c']]], - ['bytes_41',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]] + ['bubble_5fsort_38',['bubble_sort',['../d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281',1,'bubble_sort_2.c']]], + ['bubble_5fsort_2ec_39',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]], + ['bubble_5fsort_5f2_2ec_40',['bubble_sort_2.c',['../d2/d6d/bubble__sort__2_8c.html',1,'']]], + ['bubble_5fsort_5frecursion_2ec_41',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]], + ['bubblesort_42',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort_recursion.c']]], + ['bytes_43',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]] ]; diff --git a/search/all_4.js b/search/all_4.js index 3a08a546..19fee7f3 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,35 +1,35 @@ var searchData= [ - ['c_5fatoi_42',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]], - ['c_5fatoi_5fstr_5fto_5finteger_2ec_43',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]], - ['calculatecentroid_44',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]], - ['calculatenearst_45',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]], - ['calloc_46',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]], - ['calloc_5fdbg_47',['calloc_dbg',['../d2/ddd/malloc__dbg_8h.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../db/d84/malloc__dbg_8c.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c']]], - ['cantor_5fset_2ec_48',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]], - ['cantorset_49',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]], - ['carray_50',['CArray',['../d4/d2d/struct_c_array.html',1,'']]], - ['cartesian_5fto_5fpolar_2ec_51',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]], - ['check_5fnumber_52',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n): sol2.c']]], - ['check_5ftermination_53',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]], - ['client_2ec_54',['client.c',['../dd/d93/client_8c.html',1,'']]], - ['cluster_55',['cluster',['../d1/d99/structcluster.html',1,'']]], - ['code_20style_20convention_56',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]], - ['coef_57',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]], - ['collatz_58',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]], - ['collatz_2ec_59',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]], - ['combine_60',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]], - ['combine_5ffunction_61',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]], - ['compare_62',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]], - ['complex_5fstr_63',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]], - ['contribution_20guidelines_64',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]], - ['contributor_20covenant_20code_20of_20conduct_65',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]], - ['convert_66',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'infix_to_postfix.c']]], - ['count_67',['count',['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster::count()'],['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'count(int *arr, const int size): prime_seive.c']]], - ['count_5fdivisors_68',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]], - ['crc32_69',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]], - ['create_70',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]], - ['create_5fmatrix_71',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]], - ['create_5fnode_72',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]], - ['create_5fpolynomial_73',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]] + ['c_5fatoi_44',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]], + ['c_5fatoi_5fstr_5fto_5finteger_2ec_45',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]], + ['calculatecentroid_46',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]], + ['calculatenearst_47',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]], + ['calloc_48',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]], + ['calloc_5fdbg_49',['calloc_dbg',['../d2/ddd/malloc__dbg_8h.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../db/d84/malloc__dbg_8c.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c']]], + ['cantor_5fset_2ec_50',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]], + ['cantorset_51',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]], + ['carray_52',['CArray',['../d4/d2d/struct_c_array.html',1,'']]], + ['cartesian_5fto_5fpolar_2ec_53',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]], + ['check_5fnumber_54',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n): sol2.c']]], + ['check_5ftermination_55',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]], + ['client_2ec_56',['client.c',['../dd/d93/client_8c.html',1,'']]], + ['cluster_57',['cluster',['../d1/d99/structcluster.html',1,'']]], + ['code_20style_20convention_58',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]], + ['coef_59',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]], + ['collatz_60',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]], + ['collatz_2ec_61',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]], + ['combine_62',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]], + ['combine_5ffunction_63',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]], + ['compare_64',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]], + ['complex_5fstr_65',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]], + ['contribution_20guidelines_66',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]], + ['contributor_20covenant_20code_20of_20conduct_67',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]], + ['convert_68',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'infix_to_postfix.c']]], + ['count_69',['count',['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster::count()'],['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'count(int *arr, const int size): prime_seive.c']]], + ['count_5fdivisors_70',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]], + ['crc32_71',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]], + ['create_72',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]], + ['create_5fmatrix_73',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]], + ['create_5fnode_74',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]], + ['create_5fpolynomial_75',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]] ]; diff --git a/search/all_5.js b/search/all_5.js index 996fb7ca..ac65e514 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,28 +1,28 @@ var searchData= [ - ['d_5ffunc_74',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]], - ['data_75',['data',['../df/dea/structdata.html',1,'data'],['../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2',1,'node::data()'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]], - ['decimal_5fto_5fbinary_76',['decimal_to_binary',['../d8/d30/decimal__to__binary__recursion_8c.html#acbbe6358ec95b3201865a72b2ac522c8',1,'decimal_to_binary_recursion.c']]], - ['decimal_5fto_5fbinary_5frecursion_2ec_77',['decimal_to_binary_recursion.c',['../d8/d30/decimal__to__binary__recursion_8c.html',1,'']]], - ['delete_78',['delete',['../da/d02/binary__search__tree_8c.html#a748f3966920e2fd197906be1e151b127',1,'delete(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446',1,'delete(List *list, int pos): doubly_linked_list.c']]], - ['delete_5fadaline_79',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]], - ['delete_5fbt_80',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]], - ['delete_5fnumber_81',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]], - ['dict_82',['Dict',['../d4/dfe/struct_dict.html',1,'']]], - ['dictionary_83',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]], - ['digits_84',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]], - ['dim1_85',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]], - ['dim2_86',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]], - ['dim3_87',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]], - ['display_88',['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'],['../dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bubble_sort.c']]], - ['display_5fpolynomial_89',['display_polynomial',['../d0/dcb/poly__add_8c.html#ab9b9bedcb99f279d491d1b856791a36d',1,'poly_add.c']]], - ['divisors_90',['divisors',['../d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6',1,'sol2.c']]], - ['djb2_91',['djb2',['../d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b',1,'hash_djb2.c']]], - ['dot_5fprod_92',['dot_prod',['../de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84',1,'vectors_3d.c']]], - ['doubly_5flinked_5flist_2ec_93',['doubly_linked_list.c',['../dd/d29/doubly__linked__list_8c.html',1,'']]], - ['dual_94',['dual',['../de/d58/structquaternion__.html#a596abbab688731119c1f23b26a7ac17a',1,'quaternion_::dual()'],['../d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d',1,'dual_quat_::dual()']]], - ['dual_5fquat_95',['dual_quat',['../d4/d69/group__dual__quats.html#ga27005601c47e5bb7aafe77659e76c88f',1,'geometry_datatypes.h']]], - ['dual_5fquat_5f_96',['dual_quat_',['../d7/dfd/structdual__quat__.html',1,'']]], - ['durand_5fkerner_5froots_2ec_97',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]], - ['dynamic_5farray_98',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]] + ['d_5ffunc_76',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]], + ['data_77',['data',['../df/dea/structdata.html',1,'data'],['../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2',1,'node::data()'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]], + ['decimal_5fto_5fbinary_78',['decimal_to_binary',['../d8/d30/decimal__to__binary__recursion_8c.html#acbbe6358ec95b3201865a72b2ac522c8',1,'decimal_to_binary_recursion.c']]], + ['decimal_5fto_5fbinary_5frecursion_2ec_79',['decimal_to_binary_recursion.c',['../d8/d30/decimal__to__binary__recursion_8c.html',1,'']]], + ['delete_80',['delete',['../da/d02/binary__search__tree_8c.html#a748f3966920e2fd197906be1e151b127',1,'delete(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446',1,'delete(List *list, int pos): doubly_linked_list.c']]], + ['delete_5fadaline_81',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]], + ['delete_5fbt_82',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]], + ['delete_5fnumber_83',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]], + ['dict_84',['Dict',['../d4/dfe/struct_dict.html',1,'']]], + ['dictionary_85',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]], + ['digits_86',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]], + ['dim1_87',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]], + ['dim2_88',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]], + ['dim3_89',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]], + ['display_90',['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'],['../dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bubble_sort.c']]], + ['display_5fpolynomial_91',['display_polynomial',['../d0/dcb/poly__add_8c.html#ab9b9bedcb99f279d491d1b856791a36d',1,'poly_add.c']]], + ['divisors_92',['divisors',['../d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6',1,'sol2.c']]], + ['djb2_93',['djb2',['../d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b',1,'hash_djb2.c']]], + ['dot_5fprod_94',['dot_prod',['../de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84',1,'vectors_3d.c']]], + ['doubly_5flinked_5flist_2ec_95',['doubly_linked_list.c',['../dd/d29/doubly__linked__list_8c.html',1,'']]], + ['dual_96',['dual',['../de/d58/structquaternion__.html#a596abbab688731119c1f23b26a7ac17a',1,'quaternion_::dual()'],['../d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d',1,'dual_quat_::dual()']]], + ['dual_5fquat_97',['dual_quat',['../d4/d69/group__dual__quats.html#ga27005601c47e5bb7aafe77659e76c88f',1,'geometry_datatypes.h']]], + ['dual_5fquat_5f_98',['dual_quat_',['../d7/dfd/structdual__quat__.html',1,'']]], + ['durand_5fkerner_5froots_2ec_99',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]], + ['dynamic_5farray_100',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]] ]; diff --git a/search/all_6.js b/search/all_6.js index 67ccf7a2..0d29e1ae 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,17 +1,17 @@ var searchData= [ - ['edge_99',['Edge',['../d5/db4/struct_edge.html',1,'']]], - ['editinfo_100',['editInfo',['../db/d84/malloc__dbg_8c.html#a8ac3a93239838ac88c18df64c58b9275',1,'malloc_dbg.c']]], - ['eigen_5fvalues_101',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]], - ['elem_102',['elem',['../d0/d6b/structelem.html',1,'']]], - ['elem_5fsize_103',['elem_size',['../dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853',1,'segment_tree']]], - ['elevation_104',['elevation',['../d2/de8/structeuler__.html#abbbf12f0a960faf783d219f9012cdce6',1,'euler_']]], - ['end_105',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]], - ['epsilon_106',['EPSILON',['../de/d5a/group__quaternions.html#ga002b2f4894492820fe708b1b7e7c5e70',1,'EPSILON(): geometry_datatypes.h'],['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'EPSILON(): qr_eigen_values.c']]], - ['eta_107',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]], - ['euler_108',['euler',['../dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd',1,'geometry_datatypes.h']]], - ['euler_5f_109',['euler_',['../d2/de8/structeuler__.html',1,'']]], - ['euler_5ffrom_5fquat_110',['euler_from_quat',['../dc/d9a/group__quats.html#ga1afd165100e9b02b86e3bd11b50f3b06',1,'quaternions.c']]], - ['exact_5fsolution_111',['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']]], - ['example_112',['example',['../dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422',1,'doubly_linked_list.c']]] + ['edge_101',['Edge',['../d5/db4/struct_edge.html',1,'']]], + ['editinfo_102',['editInfo',['../db/d84/malloc__dbg_8c.html#a8ac3a93239838ac88c18df64c58b9275',1,'malloc_dbg.c']]], + ['eigen_5fvalues_103',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]], + ['elem_104',['elem',['../d0/d6b/structelem.html',1,'']]], + ['elem_5fsize_105',['elem_size',['../dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853',1,'segment_tree']]], + ['elevation_106',['elevation',['../d2/de8/structeuler__.html#abbbf12f0a960faf783d219f9012cdce6',1,'euler_']]], + ['end_107',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]], + ['epsilon_108',['EPSILON',['../de/d5a/group__quaternions.html#ga002b2f4894492820fe708b1b7e7c5e70',1,'EPSILON(): geometry_datatypes.h'],['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'EPSILON(): qr_eigen_values.c']]], + ['eta_109',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]], + ['euler_110',['euler',['../dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd',1,'geometry_datatypes.h']]], + ['euler_5f_111',['euler_',['../d2/de8/structeuler__.html',1,'']]], + ['euler_5ffrom_5fquat_112',['euler_from_quat',['../dc/d9a/group__quats.html#ga1afd165100e9b02b86e3bd11b50f3b06',1,'quaternions.c']]], + ['exact_5fsolution_113',['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']]], + ['example_114',['example',['../dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422',1,'doubly_linked_list.c']]] ]; diff --git a/search/all_7.js b/search/all_7.js index df9690e1..0b1194bf 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,16 +1,16 @@ var searchData= [ - ['factorial_5flarge_5fnumber_2ec_113',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]], - ['fib_114',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]], - ['fibonacci_5ffast_2ec_115',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]], - ['filename_116',['fileName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be',1,'MEMORY_INFORMATION']]], - ['find_117',['find',['../da/d02/binary__search__tree_8c.html#adff4c6248834a9944a1fb03a20230c9c',1,'find(node *root, int data): binary_search_tree.c'],['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'find(int *p, int x): union_find.c']]], - ['forward_5feuler_118',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]], - ['forward_5feuler_5fstep_119',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]], - ['free_120',['free',['../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768',1,'malloc_dbg.h']]], - ['free_5fdbg_121',['free_dbg',['../db/d84/malloc__dbg_8c.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c']]], - ['free_5fmemory_122',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]], - ['free_5fpoly_123',['free_poly',['../d0/dcb/poly__add_8c.html#a5a103fff33166d6e4d975b8b63c6e895',1,'poly_add.c']]], - ['func_124',['func',['../dd/d93/client_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): client.c'],['../d1/d20/server_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): server.c'],['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'func(double complex x): newton_raphson_root.c']]], - ['functionname_125',['functionName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417',1,'MEMORY_INFORMATION']]] + ['factorial_5flarge_5fnumber_2ec_115',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]], + ['fib_116',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]], + ['fibonacci_5ffast_2ec_117',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]], + ['filename_118',['fileName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be',1,'MEMORY_INFORMATION']]], + ['find_119',['find',['../da/d02/binary__search__tree_8c.html#adff4c6248834a9944a1fb03a20230c9c',1,'find(node *root, int data): binary_search_tree.c'],['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'find(int *p, int x): union_find.c']]], + ['forward_5feuler_120',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]], + ['forward_5feuler_5fstep_121',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]], + ['free_122',['free',['../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768',1,'malloc_dbg.h']]], + ['free_5fdbg_123',['free_dbg',['../db/d84/malloc__dbg_8c.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c']]], + ['free_5fmemory_124',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]], + ['free_5fpoly_125',['free_poly',['../d0/dcb/poly__add_8c.html#a5a103fff33166d6e4d975b8b63c6e895',1,'poly_add.c']]], + ['func_126',['func',['../dd/d93/client_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): client.c'],['../d1/d20/server_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): server.c'],['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'func(double complex x): newton_raphson_root.c']]], + ['functionname_127',['functionName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417',1,'MEMORY_INFORMATION']]] ]; diff --git a/search/all_8.js b/search/all_8.js index 9ee0a0c6..b2bd899f 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,23 +1,23 @@ var searchData= [ - ['gcd_126',['gcd',['../d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol3.c']]], - ['geometry_5fdatatypes_2eh_127',['geometry_datatypes.h',['../d0/dc7/geometry__datatypes_8h.html',1,'']]], - ['get_5fclock_5fdiff_128',['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_5fcross_5fmatrix_129',['get_cross_matrix',['../de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849',1,'vectors_3d.c']]], - ['get_5fdigits_130',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]], - ['get_5fdivisors_131',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]], - ['get_5fmin_5f2d_132',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]], - ['get_5fmonth_5fdays_133',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]], - ['get_5fnext_5fabundant_134',['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_135',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]], - ['get_5fnumber_136',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]], - ['get_5fperfect_5fnumber_137',['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_138',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]], - ['get_5frand_139',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]], - ['getmax_140',['getMax',['../da/d02/binary__search__tree_8c.html#ad297e528a7bb8604ca93af149d609150',1,'binary_search_tree.c']]], - ['getprecedence_141',['getPrecedence',['../db/d0c/infix__to__postfix_8c.html#ac91f38ad7885fca93e39325361a5c787',1,'infix_to_postfix.c']]], - ['graph_142',['Graph',['../d4/dd4/struct_graph.html',1,'']]], - ['graphrep_143',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]], - ['group_144',['group',['../d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab',1,'observation']]], - ['guidelines_20for_20reviewers_20and_20maintainers_145',['Guidelines for reviewers and maintainers',['../dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html',1,'']]] + ['gcd_128',['gcd',['../d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol3.c']]], + ['geometry_5fdatatypes_2eh_129',['geometry_datatypes.h',['../d0/dc7/geometry__datatypes_8h.html',1,'']]], + ['get_5fclock_5fdiff_130',['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_5fcross_5fmatrix_131',['get_cross_matrix',['../de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849',1,'vectors_3d.c']]], + ['get_5fdigits_132',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]], + ['get_5fdivisors_133',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]], + ['get_5fmin_5f2d_134',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]], + ['get_5fmonth_5fdays_135',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]], + ['get_5fnext_5fabundant_136',['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_137',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]], + ['get_5fnumber_138',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]], + ['get_5fperfect_5fnumber_139',['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_140',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]], + ['get_5frand_141',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]], + ['getmax_142',['getMax',['../da/d02/binary__search__tree_8c.html#ad297e528a7bb8604ca93af149d609150',1,'binary_search_tree.c']]], + ['getprecedence_143',['getPrecedence',['../db/d0c/infix__to__postfix_8c.html#ac91f38ad7885fca93e39325361a5c787',1,'infix_to_postfix.c']]], + ['graph_144',['Graph',['../d4/dd4/struct_graph.html',1,'']]], + ['graphrep_145',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]], + ['group_146',['group',['../d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab',1,'observation']]], + ['guidelines_20for_20reviewers_20and_20maintainers_147',['Guidelines for reviewers and maintainers',['../dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html',1,'']]] ]; diff --git a/search/all_9.js b/search/all_9.js index 5e35a042..19ac7ddd 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,14 +1,14 @@ var searchData= [ - ['hash_20algorithms_146',['Hash algorithms',['../d7/d3b/group__hash.html',1,'(Global Namespace)'],['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'(Global Namespace)']]], - ['hash_5fadler32_2ec_147',['hash_adler32.c',['../d3/d39/hash__adler32_8c.html',1,'']]], - ['hash_5fcrc32_2ec_148',['hash_crc32.c',['../d9/dc9/hash__crc32_8c.html',1,'']]], - ['hash_5fdjb2_2ec_149',['hash_djb2.c',['../d4/de3/hash__djb2_8c.html',1,'']]], - ['hash_5fsdbm_2ec_150',['hash_sdbm.c',['../d7/d0c/hash__sdbm_8c.html',1,'']]], - ['hash_5fset_5ft_151',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]], - ['hash_5fxor8_2ec_152',['hash_xor8.c',['../d0/d57/hash__xor8_8c.html',1,'']]], - ['heading_153',['heading',['../d2/de8/structeuler__.html#a899572e1b6a43387128de3a402a0a5f8',1,'euler_']]], - ['height_154',['height',['../da/d02/binary__search__tree_8c.html#ae4a66d8b0c2b0d626aea45977e358c83',1,'binary_search_tree.c']]], - ['hex_5fto_5foct_155',['hex_to_oct',['../d0/dd9/hexadecimal__to__octal2_8c.html#a4d7524efe6e2917b3674445b7269906b',1,'hexadecimal_to_octal2.c']]], - ['hexadecimal_5fto_5foctal2_2ec_156',['hexadecimal_to_octal2.c',['../d0/dd9/hexadecimal__to__octal2_8c.html',1,'']]] + ['hash_20algorithms_148',['Hash algorithms',['../d7/d3b/group__hash.html',1,'(Global Namespace)'],['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'(Global Namespace)']]], + ['hash_5fadler32_2ec_149',['hash_adler32.c',['../d3/d39/hash__adler32_8c.html',1,'']]], + ['hash_5fcrc32_2ec_150',['hash_crc32.c',['../d9/dc9/hash__crc32_8c.html',1,'']]], + ['hash_5fdjb2_2ec_151',['hash_djb2.c',['../d4/de3/hash__djb2_8c.html',1,'']]], + ['hash_5fsdbm_2ec_152',['hash_sdbm.c',['../d7/d0c/hash__sdbm_8c.html',1,'']]], + ['hash_5fset_5ft_153',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]], + ['hash_5fxor8_2ec_154',['hash_xor8.c',['../d0/d57/hash__xor8_8c.html',1,'']]], + ['heading_155',['heading',['../d2/de8/structeuler__.html#a899572e1b6a43387128de3a402a0a5f8',1,'euler_']]], + ['height_156',['height',['../da/d02/binary__search__tree_8c.html#ae4a66d8b0c2b0d626aea45977e358c83',1,'binary_search_tree.c']]], + ['hex_5fto_5foct_157',['hex_to_oct',['../d0/dd9/hexadecimal__to__octal2_8c.html#a4d7524efe6e2917b3674445b7269906b',1,'hexadecimal_to_octal2.c']]], + ['hexadecimal_5fto_5foctal2_2ec_158',['hexadecimal_to_octal2.c',['../d0/dd9/hexadecimal__to__octal2_8c.html',1,'']]] ]; diff --git a/search/all_a.js b/search/all_a.js index c9ba8494..52469f18 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,27 +1,27 @@ var searchData= [ - ['identity_157',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]], - ['infix_5fto_5fpostfix_2ec_158',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]], - ['inlist_159',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]], - ['inorder_160',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]], - ['inorder_5fdisplay_161',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]], - ['insert_162',['insert',['../da/d02/binary__search__tree_8c.html#a73152b9ccb4aa5cd4c1bacd4188bb2de',1,'insert(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos): doubly_linked_list.c']]], - ['insert_5fbt_163',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]], - ['insertion_5fsort_2ec_164',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]], - ['insertion_5fsort_5frecursive_2ec_165',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]], - ['insertionsort_166',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]], - ['int_5fto_5fstring_167',['int_to_string',['../dd/d53/int__to__string_8c.html#a969911f32f1c435bb2bf166574ef9ae5',1,'int_to_string.c']]], - ['int_5fto_5fstring_2ec_168',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]], - ['is_5fabundant_169',['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_170',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]], - ['is_5fleap_5fyear_171',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]], - ['is_5fpalindromic_172',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]], - ['is_5fprime_173',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]], - ['is_5fsum_5fof_5fabundant_174',['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']]], - ['isempty_175',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'infix_to_postfix.c']]], - ['isoprnd_176',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]], - ['ispalindrome_177',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]], - ['isprime_178',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]], - ['isprime_179',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]], - ['isstrong_180',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]] + ['identity_159',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]], + ['infix_5fto_5fpostfix_2ec_160',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]], + ['inlist_161',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]], + ['inorder_162',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]], + ['inorder_5fdisplay_163',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]], + ['insert_164',['insert',['../da/d02/binary__search__tree_8c.html#a73152b9ccb4aa5cd4c1bacd4188bb2de',1,'insert(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos): doubly_linked_list.c']]], + ['insert_5fbt_165',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]], + ['insertion_5fsort_2ec_166',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]], + ['insertion_5fsort_5frecursive_2ec_167',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]], + ['insertionsort_168',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]], + ['int_5fto_5fstring_169',['int_to_string',['../dd/d53/int__to__string_8c.html#a969911f32f1c435bb2bf166574ef9ae5',1,'int_to_string.c']]], + ['int_5fto_5fstring_2ec_170',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]], + ['is_5fabundant_171',['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_172',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]], + ['is_5fleap_5fyear_173',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]], + ['is_5fpalindromic_174',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]], + ['is_5fprime_175',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]], + ['is_5fsum_5fof_5fabundant_176',['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']]], + ['isempty_177',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'infix_to_postfix.c']]], + ['isoprnd_178',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]], + ['ispalindrome_179',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]], + ['isprime_180',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]], + ['isprime_181',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]], + ['isstrong_182',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]] ]; diff --git a/search/all_b.js b/search/all_b.js index 8b9e85a5..05ef18ab 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['join_181',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]], - ['jump_5fsearch_182',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]], - ['jump_5fsearch_2ec_183',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]] + ['join_183',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]], + ['jump_5fsearch_184',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]], + ['jump_5fsearch_2ec_185',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]] ]; diff --git a/search/all_c.js b/search/all_c.js index 55b3e0de..a1f16b41 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,16 +1,16 @@ var searchData= [ - ['k_2dmeans_20clustering_20algorithm_184',['K-Means Clustering Algorithm',['../d8/d71/group__k__means.html',1,'']]], - ['k_5fmeans_5fclustering_2ec_185',['k_means_clustering.c',['../d6/d76/k__means__clustering_8c.html',1,'']]], - ['kmeans_186',['kMeans',['../d8/d71/group__k__means.html#gad229b1dc406cb5ea510f26a373ed8bfd',1,'k_means_clustering.c']]], - ['kohonen_20som_20topology_20algorithm_187',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]], - ['kohonen_20som_20trace_2fchain_20algorithm_188',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]], - ['kohonen_5farray_5f3d_189',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]], - ['kohonen_5fdata_5f3d_190',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]], - ['kohonen_5fget_5fmin_5f1d_191',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]], - ['kohonen_5fsom_192',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]], - ['kohonen_5fsom_5ftopology_2ec_193',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]], - ['kohonen_5fsom_5ftrace_2ec_194',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]], - ['kohonen_5fsom_5ftracer_195',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]], - ['kohonen_5fupdate_5fweights_196',['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']]] + ['k_2dmeans_20clustering_20algorithm_186',['K-Means Clustering Algorithm',['../d8/d71/group__k__means.html',1,'']]], + ['k_5fmeans_5fclustering_2ec_187',['k_means_clustering.c',['../d6/d76/k__means__clustering_8c.html',1,'']]], + ['kmeans_188',['kMeans',['../d8/d71/group__k__means.html#gad229b1dc406cb5ea510f26a373ed8bfd',1,'k_means_clustering.c']]], + ['kohonen_20som_20topology_20algorithm_189',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]], + ['kohonen_20som_20trace_2fchain_20algorithm_190',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]], + ['kohonen_5farray_5f3d_191',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]], + ['kohonen_5fdata_5f3d_192',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]], + ['kohonen_5fget_5fmin_5f1d_193',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]], + ['kohonen_5fsom_194',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]], + ['kohonen_5fsom_5ftopology_2ec_195',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]], + ['kohonen_5fsom_5ftrace_2ec_196',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]], + ['kohonen_5fsom_5ftracer_197',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]], + ['kohonen_5fupdate_5fweights_198',['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_d.js b/search/all_d.js index 2ca88017..c1c469da 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,19 +1,19 @@ var searchData= [ - ['l_197',['L',['../df/db3/struct_l.html',1,'']]], - ['large_5fnum_198',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]], - ['lazy_5fsort_199',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]], - ['lcm_200',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]], - ['leetcode_201',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]], - ['left_202',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node']]], - ['length_203',['length',['../dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e',1,'segment_tree']]], - ['library_20for_203d_20vectors_20_26_20quaternions_204',['Library for 3D Vectors & Quaternions',['../de/d5a/group__quaternions.html',1,'']]], - ['lims_205',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]], - ['line_206',['line',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99',1,'MEMORY_INFORMATION']]], - ['list_207',['list',['../d8/d10/structlist.html',1,'']]], - ['list_208',['List',['../dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7',1,'doubly_linked_list.c']]], - ['list_20of_20all_20files_209',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]], - ['llink_210',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]], - ['lu_5fdecompose_2ec_211',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]], - ['lu_5fdecomposition_212',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]] + ['l_199',['L',['../df/db3/struct_l.html',1,'']]], + ['large_5fnum_200',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]], + ['lazy_5fsort_201',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]], + ['lcm_202',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]], + ['leetcode_203',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]], + ['left_204',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node']]], + ['length_205',['length',['../dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e',1,'segment_tree']]], + ['library_20for_203d_20vectors_20_26_20quaternions_206',['Library for 3D Vectors & Quaternions',['../de/d5a/group__quaternions.html',1,'']]], + ['lims_207',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]], + ['line_208',['line',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99',1,'MEMORY_INFORMATION']]], + ['list_209',['list',['../d8/d10/structlist.html',1,'']]], + ['list_210',['List',['../dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7',1,'doubly_linked_list.c']]], + ['list_20of_20all_20files_211',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]], + ['llink_212',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]], + ['lu_5fdecompose_2ec_213',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]], + ['lu_5fdecomposition_214',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 1f5d40f5..5830434b 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,41 +1,41 @@ var searchData= [ - ['machine_20learning_20algorithms_213',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]], - ['main_214',['main',['../d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): so1.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): insertion_sort_recursive.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_recursion.c'],['../dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bubble_sort.c'],['../d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bead_sort.c'],['../dd/d93/client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): client.c'],['../d1/d20/server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): server.c'],['../da/de6/udp__client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_client.c'],['../d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_server.c'],['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): decimal_to_binary_recursion.c'],['../d0/dd9/hexadecimal__to__octal2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hexadecimal_to_octal2.c'],['../db/d0c/infix__to__postfix_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): infix_to_postfix.c'],['../dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): octal_to_hexadecimal.c'],['../da/d02/binary__search__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): binary_search_tree.c'],['../da/da0/segment__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): segment_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): doubly_linked_list.c'],['../dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): test_malloc_dbg.c'],['../d5/db8/vectors__3d_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../d3/d39/hash__adler32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_adler32.c'],['../d9/dc9/hash__crc32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_crc32.c'],['../d4/de3/hash__djb2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_djb2.c'],['../d7/d0c/hash__sdbm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_sdbm.c'],['../d0/d57/hash__xor8_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_xor8.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): k_means_clustering.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'],['../df/d16/palindrome_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): palindrome.c'],['../d0/dcb/poly__add_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): poly_add.c'],['../da/d93/prime_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): prime.c'],['../d1/ded/group__misc.html#gac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): strong_number.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'],['../df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): selection_sort.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'],['../da/d56/problem__1_2sol3_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'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.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'],['../dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol3.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'],['../d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.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']]], - ['malloc_215',['malloc',['../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee',1,'malloc_dbg.h']]], - ['malloc_5fdbg_216',['malloc_dbg',['../db/d84/malloc__dbg_8c.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c']]], - ['malloc_5fdbg_2ec_217',['malloc_dbg.c',['../db/d84/malloc__dbg_8c.html',1,'']]], - ['malloc_5fdbg_2eh_218',['malloc_dbg.h',['../d2/ddd/malloc__dbg_8h.html',1,'']]], - ['mat_5f3x3_219',['mat_3x3',['../dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7',1,'geometry_datatypes.h']]], - ['mat_5f3x3_5f_220',['mat_3x3_',['../d9/d8b/structmat__3x3__.html',1,'']]], - ['mat_5fmul_221',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]], - ['matrix_20operations_222',['Matrix operations',['../dd/d7a/group__matrix.html',1,'']]], - ['max_223',['MAX',['../dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): client.c'],['../d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): server.c']]], - ['max_224',['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_225',['MAX_ADALINE_ITER',['../da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f',1,'adaline_learning.c']]], - ['max_5fdeno_226',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]], - ['max_5fdigits_227',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]], - ['max_5fheap_228',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]], - ['max_5flen_229',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]], - ['max_5flength_230',['MAX_LENGTH',['../d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077',1,'sol1.c']]], - ['max_5fname_5flen_231',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]], - ['max_5fnames_232',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]], - ['max_5fsize_233',['MAX_SIZE',['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'MAX_SIZE(): union_find.c'],['../db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7',1,'MAX_SIZE(): prime_seive.c']]], - ['maxline_234',['MAXLINE',['../da/de6/udp__client_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_client.c'],['../d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_server.c']]], - ['mem_5finfo_235',['mem_info',['../db/d84/malloc__dbg_8c.html#ab6619fb17769f2e4e2e36c9ef2dda3c6',1,'malloc_dbg.c']]], - ['memory_5finformation_236',['MEMORY_INFORMATION',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html',1,'']]], - ['memoryinformation_237',['memoryInformation',['../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3',1,'malloc_dbg.c']]], - ['merge_238',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]], - ['merge_5fsort_239',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]], - ['merge_5fsort_2ec_240',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]], - ['midpoint_5feuler_241',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]], - ['midpoint_5feuler_5fstep_242',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]], - ['min_243',['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_244',['min_heap',['../de/dce/structmin__heap.html',1,'']]], - ['minimum_245',['minimum',['../da/da0/segment__tree_8c.html#a93bfab032ce9dbc0c1feaeee32a885fb',1,'segment_tree.c']]], - ['misc_246',['Misc',['../d1/ded/group__misc.html',1,'']]], - ['mod_5flimit_247',['MOD_LIMIT',['../d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3',1,'sol1.c']]], - ['modified_5fbinary_5fsearch_2ec_248',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]], - ['modifiedbinarysearch_249',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]], - ['multiply_250',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]] + ['machine_20learning_20algorithms_215',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]], + ['main_216',['main',['../db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): sol1.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): ode_midpoint_euler.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): insertion_sort_recursive.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_recursion.c'],['../d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_2.c'],['../dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bubble_sort.c'],['../dd/d93/client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): client.c'],['../d1/d20/server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): server.c'],['../da/de6/udp__client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_client.c'],['../d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_server.c'],['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): decimal_to_binary_recursion.c'],['../d0/dd9/hexadecimal__to__octal2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hexadecimal_to_octal2.c'],['../db/d0c/infix__to__postfix_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): infix_to_postfix.c'],['../dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): octal_to_hexadecimal.c'],['../da/d02/binary__search__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): binary_search_tree.c'],['../da/da0/segment__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): segment_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): doubly_linked_list.c'],['../dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): test_malloc_dbg.c'],['../d5/db8/vectors__3d_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../d3/d39/hash__adler32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_adler32.c'],['../d9/dc9/hash__crc32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_crc32.c'],['../d4/de3/hash__djb2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_djb2.c'],['../d7/d0c/hash__sdbm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_sdbm.c'],['../d0/d57/hash__xor8_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_xor8.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): k_means_clustering.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'],['../df/d16/palindrome_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): palindrome.c'],['../d0/dcb/poly__add_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): poly_add.c'],['../da/d93/prime_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): prime.c'],['../d1/ded/group__misc.html#gac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): strong_number.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'],['../df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): selection_sort.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'],['../da/d56/problem__1_2sol3_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'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.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'],['../dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol3.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'],['../d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.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']]], + ['malloc_217',['malloc',['../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee',1,'malloc_dbg.h']]], + ['malloc_5fdbg_218',['malloc_dbg',['../db/d84/malloc__dbg_8c.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c']]], + ['malloc_5fdbg_2ec_219',['malloc_dbg.c',['../db/d84/malloc__dbg_8c.html',1,'']]], + ['malloc_5fdbg_2eh_220',['malloc_dbg.h',['../d2/ddd/malloc__dbg_8h.html',1,'']]], + ['mat_5f3x3_221',['mat_3x3',['../dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7',1,'geometry_datatypes.h']]], + ['mat_5f3x3_5f_222',['mat_3x3_',['../d9/d8b/structmat__3x3__.html',1,'']]], + ['mat_5fmul_223',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]], + ['matrix_20operations_224',['Matrix operations',['../dd/d7a/group__matrix.html',1,'']]], + ['max_225',['MAX',['../dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): client.c'],['../d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): server.c'],['../d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): bubble_sort_2.c']]], + ['max_226',['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_227',['MAX_ADALINE_ITER',['../da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f',1,'adaline_learning.c']]], + ['max_5fdeno_228',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]], + ['max_5fdigits_229',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]], + ['max_5fheap_230',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]], + ['max_5flen_231',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]], + ['max_5flength_232',['MAX_LENGTH',['../d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077',1,'sol1.c']]], + ['max_5fname_5flen_233',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]], + ['max_5fnames_234',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]], + ['max_5fsize_235',['MAX_SIZE',['../db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7',1,'MAX_SIZE(): prime_seive.c'],['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'MAX_SIZE(): union_find.c']]], + ['maxline_236',['MAXLINE',['../da/de6/udp__client_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_client.c'],['../d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_server.c']]], + ['mem_5finfo_237',['mem_info',['../db/d84/malloc__dbg_8c.html#ab6619fb17769f2e4e2e36c9ef2dda3c6',1,'malloc_dbg.c']]], + ['memory_5finformation_238',['MEMORY_INFORMATION',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html',1,'']]], + ['memoryinformation_239',['memoryInformation',['../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3',1,'malloc_dbg.c']]], + ['merge_240',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]], + ['merge_5fsort_241',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]], + ['merge_5fsort_2ec_242',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]], + ['midpoint_5feuler_243',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]], + ['midpoint_5feuler_5fstep_244',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]], + ['min_245',['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_246',['min_heap',['../de/dce/structmin__heap.html',1,'']]], + ['minimum_247',['minimum',['../da/da0/segment__tree_8c.html#a93bfab032ce9dbc0c1feaeee32a885fb',1,'segment_tree.c']]], + ['misc_248',['Misc',['../d1/ded/group__misc.html',1,'']]], + ['mod_5flimit_249',['MOD_LIMIT',['../d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3',1,'sol1.c']]], + ['modified_5fbinary_5fsearch_2ec_250',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]], + ['modifiedbinarysearch_251',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]], + ['multiply_252',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]] ]; diff --git a/search/all_f.js b/search/all_f.js index 8626bd12..ef9c75f3 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,17 +1,17 @@ var searchData= [ - ['n_251',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]], - ['n2_252',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]], - ['new_5fadaline_253',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]], - ['new_5fnumber_254',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]], - ['newnode_255',['newNode',['../da/d02/binary__search__tree_8c.html#ac73c73be92dbbeeaad942c0103b9540d',1,'binary_search_tree.c']]], - ['newton_5fraphson_5froot_2ec_256',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]], - ['next_257',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]], - ['next_5fdigit_258',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]], - ['node_259',['node',['../d5/da1/structnode.html',1,'']]], - ['node_260',['Node',['../db/d8b/struct_node.html',1,'']]], - ['node_261',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node(): binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]], - ['num_5fdigits_262',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]], - ['num_5fweights_263',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]], - ['number_5fof_5fpaths_264',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]] + ['n_253',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]], + ['n2_254',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]], + ['new_5fadaline_255',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]], + ['new_5fnumber_256',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]], + ['newnode_257',['newNode',['../da/d02/binary__search__tree_8c.html#ac73c73be92dbbeeaad942c0103b9540d',1,'binary_search_tree.c']]], + ['newton_5fraphson_5froot_2ec_258',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]], + ['next_259',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]], + ['next_5fdigit_260',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]], + ['node_261',['node',['../d5/da1/structnode.html',1,'']]], + ['node_262',['Node',['../db/d8b/struct_node.html',1,'']]], + ['node_263',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node(): binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]], + ['num_5fdigits_264',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]], + ['num_5fweights_265',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]], + ['number_5fof_5fpaths_266',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]] ]; diff --git a/search/classes_0.js b/search/classes_0.js index 2568cbdb..9023af3c 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['_5fbig_5fint_426',['_big_int',['../dc/d77/struct__big__int.html',1,'']]], - ['_5fcantor_5fset_427',['_cantor_set',['../d9/dd7/struct__cantor__set.html',1,'']]], - ['_5flarge_5fnum_428',['_large_num',['../d3/d5a/struct__large__num.html',1,'']]] + ['_5fbig_5fint_428',['_big_int',['../dc/d77/struct__big__int.html',1,'']]], + ['_5fcantor_5fset_429',['_cantor_set',['../d9/dd7/struct__cantor__set.html',1,'']]], + ['_5flarge_5fnum_430',['_large_num',['../d3/d5a/struct__large__num.html',1,'']]] ]; diff --git a/search/classes_1.js b/search/classes_1.js index 05ce06e4..bcb3654a 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['adaline_429',['adaline',['../d2/daa/structadaline.html',1,'']]], - ['avlnode_430',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]] + ['adaline_431',['adaline',['../d2/daa/structadaline.html',1,'']]], + ['avlnode_432',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]] ]; diff --git a/search/classes_10.js b/search/classes_10.js index 3e393f7a..0e2f7dfe 100644 --- a/search/classes_10.js +++ b/search/classes_10.js @@ -1,7 +1,7 @@ var searchData= [ - ['t_462',['T',['../d5/d7e/struct_t.html',1,'']]], - ['term_463',['term',['../df/d86/structterm.html',1,'']]], - ['tnode_464',['tnode',['../d8/d7a/structtnode.html',1,'']]], - ['trienode_465',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]] + ['t_464',['T',['../d5/d7e/struct_t.html',1,'']]], + ['term_465',['term',['../df/d86/structterm.html',1,'']]], + ['tnode_466',['tnode',['../d8/d7a/structtnode.html',1,'']]], + ['trienode_467',['TrieNode',['../da/d9b/struct_trie_node.html',1,'']]] ]; diff --git a/search/classes_11.js b/search/classes_11.js index 1ebe0776..1401970e 100644 --- a/search/classes_11.js +++ b/search/classes_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['vec_5f3d_5f_466',['vec_3d_',['../d5/db4/structvec__3d__.html',1,'']]] + ['vec_5f3d_5f_468',['vec_3d_',['../d5/db4/structvec__3d__.html',1,'']]] ]; diff --git a/search/classes_12.js b/search/classes_12.js index 850c1ae8..27f0bca8 100644 --- a/search/classes_12.js +++ b/search/classes_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['word_5fcount_5fword_467',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]] + ['word_5fcount_5fword_469',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]] ]; diff --git a/search/classes_2.js b/search/classes_2.js index 5c31fc1b..5684ae19 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['bstiterator_431',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]] + ['bstiterator_433',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]] ]; diff --git a/search/classes_3.js b/search/classes_3.js index 31cdbed8..b0c22db4 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['carray_432',['CArray',['../d4/d2d/struct_c_array.html',1,'']]], - ['cluster_433',['cluster',['../d1/d99/structcluster.html',1,'']]] + ['carray_434',['CArray',['../d4/d2d/struct_c_array.html',1,'']]], + ['cluster_435',['cluster',['../d1/d99/structcluster.html',1,'']]] ]; diff --git a/search/classes_4.js b/search/classes_4.js index fd15efeb..6e5d04a6 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,7 +1,7 @@ var searchData= [ - ['data_434',['data',['../df/dea/structdata.html',1,'']]], - ['dict_435',['Dict',['../d4/dfe/struct_dict.html',1,'']]], - ['dual_5fquat_5f_436',['dual_quat_',['../d7/dfd/structdual__quat__.html',1,'']]], - ['dynamic_5farray_437',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]] + ['data_436',['data',['../df/dea/structdata.html',1,'']]], + ['dict_437',['Dict',['../d4/dfe/struct_dict.html',1,'']]], + ['dual_5fquat_5f_438',['dual_quat_',['../d7/dfd/structdual__quat__.html',1,'']]], + ['dynamic_5farray_439',['dynamic_array',['../d6/d42/structdynamic__array.html',1,'']]] ]; diff --git a/search/classes_5.js b/search/classes_5.js index 9627f6c8..e9a8eb7d 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['edge_438',['Edge',['../d5/db4/struct_edge.html',1,'']]], - ['elem_439',['elem',['../d0/d6b/structelem.html',1,'']]], - ['euler_5f_440',['euler_',['../d2/de8/structeuler__.html',1,'']]] + ['edge_440',['Edge',['../d5/db4/struct_edge.html',1,'']]], + ['elem_441',['elem',['../d0/d6b/structelem.html',1,'']]], + ['euler_5f_442',['euler_',['../d2/de8/structeuler__.html',1,'']]] ]; diff --git a/search/classes_6.js b/search/classes_6.js index 05bcfeda..f95b5a91 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['graph_441',['Graph',['../d4/dd4/struct_graph.html',1,'']]], - ['graphrep_442',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]] + ['graph_443',['Graph',['../d4/dd4/struct_graph.html',1,'']]], + ['graphrep_444',['GraphRep',['../d2/d6a/struct_graph_rep.html',1,'']]] ]; diff --git a/search/classes_7.js b/search/classes_7.js index 64e734a7..538e0daf 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['hash_5fset_5ft_443',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]] + ['hash_5fset_5ft_445',['hash_set_t',['../d0/df1/structhash__set__t.html',1,'']]] ]; diff --git a/search/classes_8.js b/search/classes_8.js index 3221aee4..3fe44c36 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['kohonen_5farray_5f3d_444',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]] + ['kohonen_5farray_5f3d_446',['kohonen_array_3d',['../d8/db8/structkohonen__array__3d.html',1,'']]] ]; diff --git a/search/classes_9.js b/search/classes_9.js index 28b11fd5..7bb5560b 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['l_445',['L',['../df/db3/struct_l.html',1,'']]], - ['list_446',['list',['../d8/d10/structlist.html',1,'']]] + ['l_447',['L',['../df/db3/struct_l.html',1,'']]], + ['list_448',['list',['../d8/d10/structlist.html',1,'']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 4e0774df..17b14760 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,7 +1,7 @@ var searchData= [ - ['mat_5f3x3_5f_447',['mat_3x3_',['../d9/d8b/structmat__3x3__.html',1,'']]], - ['max_5fheap_448',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]], - ['memory_5finformation_449',['MEMORY_INFORMATION',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html',1,'']]], - ['min_5fheap_450',['min_heap',['../de/dce/structmin__heap.html',1,'']]] + ['mat_5f3x3_5f_449',['mat_3x3_',['../d9/d8b/structmat__3x3__.html',1,'']]], + ['max_5fheap_450',['max_heap',['../d0/d8a/structmax__heap.html',1,'']]], + ['memory_5finformation_451',['MEMORY_INFORMATION',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html',1,'']]], + ['min_5fheap_452',['min_heap',['../de/dce/structmin__heap.html',1,'']]] ]; diff --git a/search/classes_b.js b/search/classes_b.js index 2e612a28..5f4a96e2 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['node_451',['node',['../d5/da1/structnode.html',1,'']]], - ['node_452',['Node',['../db/d8b/struct_node.html',1,'']]] + ['node_453',['node',['../d5/da1/structnode.html',1,'']]], + ['node_454',['Node',['../db/d8b/struct_node.html',1,'']]] ]; diff --git a/search/classes_c.js b/search/classes_c.js index d0047aa1..263f4163 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['observation_453',['observation',['../d1/d5e/structobservation.html',1,'']]] + ['observation_455',['observation',['../d1/d5e/structobservation.html',1,'']]] ]; diff --git a/search/classes_d.js b/search/classes_d.js index d754ec39..55ed6536 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['pid_454',['pid',['../d0/d43/structpid.html',1,'']]] + ['pid_456',['pid',['../d0/d43/structpid.html',1,'']]] ]; diff --git a/search/classes_e.js b/search/classes_e.js index 2ab1d6de..a097ba27 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,6 +1,6 @@ var searchData= [ - ['quaternion_5f_455',['quaternion_',['../de/d58/structquaternion__.html',1,'']]], - ['queue_456',['queue',['../d2/d36/structqueue.html',1,'']]], - ['queuerep_457',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]] + ['quaternion_5f_457',['quaternion_',['../de/d58/structquaternion__.html',1,'']]], + ['queue_458',['queue',['../d2/d36/structqueue.html',1,'']]], + ['queuerep_459',['QueueRep',['../d0/d10/struct_queue_rep.html',1,'']]] ]; diff --git a/search/classes_f.js b/search/classes_f.js index 2d84ef24..450ab9f1 100644 --- a/search/classes_f.js +++ b/search/classes_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['segment_5ftree_458',['segment_tree',['../dd/d06/structsegment__tree.html',1,'']]], - ['stack_459',['Stack',['../dd/d10/struct_stack.html',1,'']]], - ['subset_460',['subset',['../dc/de5/structsubset.html',1,'']]], - ['sudoku_461',['sudoku',['../dc/d18/structsudoku.html',1,'']]] + ['segment_5ftree_460',['segment_tree',['../dd/d06/structsegment__tree.html',1,'']]], + ['stack_461',['Stack',['../dd/d10/struct_stack.html',1,'']]], + ['subset_462',['subset',['../dc/de5/structsubset.html',1,'']]], + ['sudoku_463',['sudoku',['../dc/d18/structsudoku.html',1,'']]] ]; diff --git a/search/defines_0.js b/search/defines_0.js index 3f9d3125..febee95d 100644 --- a/search/defines_0.js +++ b/search/defines_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5fuse_5fmath_5fdefines_805',['_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']]] + ['_5fuse_5fmath_5fdefines_809',['_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 3edbe47b..026540b8 100644 --- a/search/defines_1.js +++ b/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['accuracy_806',['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_810',['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 f10d55ae..a57c99b6 100644 --- a/search/defines_2.js +++ b/search/defines_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['calloc_807',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]] + ['calloc_811',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]] ]; diff --git a/search/defines_3.js b/search/defines_3.js index 5ec16aed..1718de6d 100644 --- a/search/defines_3.js +++ b/search/defines_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['epsilon_808',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]] + ['epsilon_812',['EPSILON',['../d7/d50/qr__eigen__values_8c.html#a002b2f4894492820fe708b1b7e7c5e70',1,'qr_eigen_values.c']]] ]; diff --git a/search/defines_4.js b/search/defines_4.js index df11bad3..44a41e22 100644 --- a/search/defines_4.js +++ b/search/defines_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['free_809',['free',['../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768',1,'malloc_dbg.h']]] + ['free_813',['free',['../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768',1,'malloc_dbg.h']]] ]; diff --git a/search/defines_5.js b/search/defines_5.js index a8c2ef0e..fb29a399 100644 --- a/search/defines_5.js +++ b/search/defines_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['lims_810',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]] + ['lims_814',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]] ]; diff --git a/search/defines_6.js b/search/defines_6.js index c70cacc5..a392800d 100644 --- a/search/defines_6.js +++ b/search/defines_6.js @@ -1,15 +1,15 @@ var searchData= [ - ['malloc_811',['malloc',['../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee',1,'malloc_dbg.h']]], - ['max_812',['MAX',['../dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): client.c'],['../d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): server.c']]], - ['max_5fdeno_813',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]], - ['max_5fdigits_814',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]], - ['max_5flen_815',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]], - ['max_5flength_816',['MAX_LENGTH',['../d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077',1,'sol1.c']]], - ['max_5fname_5flen_817',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]], - ['max_5fnames_818',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]], - ['max_5fsize_819',['MAX_SIZE',['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'union_find.c']]], - ['maxline_820',['MAXLINE',['../da/de6/udp__client_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_client.c'],['../d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_server.c']]], - ['min_821',['min',['../d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e',1,'jump_search.c']]], - ['mod_5flimit_822',['MOD_LIMIT',['../d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3',1,'sol1.c']]] + ['malloc_815',['malloc',['../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee',1,'malloc_dbg.h']]], + ['max_816',['MAX',['../dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): client.c'],['../d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): server.c'],['../d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326',1,'MAX(): bubble_sort_2.c']]], + ['max_5fdeno_817',['MAX_DENO',['../d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12',1,'sol1.c']]], + ['max_5fdigits_818',['MAX_DIGITS',['../d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61',1,'sol1.c']]], + ['max_5flen_819',['MAX_LEN',['../d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe',1,'sol1.c']]], + ['max_5flength_820',['MAX_LENGTH',['../d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077',1,'sol1.c']]], + ['max_5fname_5flen_821',['MAX_NAME_LEN',['../dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a',1,'sol1.c']]], + ['max_5fnames_822',['MAX_NAMES',['../dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38',1,'sol1.c']]], + ['max_5fsize_823',['MAX_SIZE',['../df/df3/union__find_8c.html#a0592dba56693fad79136250c11e5a7fe',1,'union_find.c']]], + ['maxline_824',['MAXLINE',['../da/de6/udp__client_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_client.c'],['../d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471',1,'MAXLINE(): udp_server.c']]], + ['min_825',['min',['../d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e',1,'jump_search.c']]], + ['mod_5flimit_826',['MOD_LIMIT',['../d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3',1,'sol1.c']]] ]; diff --git a/search/defines_7.js b/search/defines_7.js index f93d57e1..6f1397ae 100644 --- a/search/defines_7.js +++ b/search/defines_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['order_823',['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_827',['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/defines_8.js b/search/defines_8.js index 9fc58e5e..a4de911c 100644 --- a/search/defines_8.js +++ b/search/defines_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['port_824',['PORT',['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): client.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_client.c'],['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_server.c']]] + ['port_828',['PORT',['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): client.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_client.c'],['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT(): udp_server.c']]] ]; diff --git a/search/defines_9.js b/search/defines_9.js index 8bac1198..6d97ed5e 100644 --- a/search/defines_9.js +++ b/search/defines_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['sa_825',['SA',['../dd/d93/client_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): client.c'],['../d1/d20/server_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): server.c']]] + ['sa_829',['SA',['../dd/d93/client_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): client.c'],['../d1/d20/server_8c.html#a1e43924adac4ae865aa0acf79710261c',1,'SA(): server.c']]] ]; diff --git a/search/files_0.js b/search/files_0.js index f590c653..6f2315b9 100644 --- a/search/files_0.js +++ b/search/files_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['adaline_5flearning_2ec_468',['adaline_learning.c',['../dd/d8c/adaline__learning_8c.html',1,'']]] + ['adaline_5flearning_2ec_470',['adaline_learning.c',['../dd/d8c/adaline__learning_8c.html',1,'']]] ]; diff --git a/search/files_1.js b/search/files_1.js index 0ed23bfa..2eae6eeb 100644 --- a/search/files_1.js +++ b/search/files_1.js @@ -1,8 +1,9 @@ var searchData= [ - ['bead_5fsort_2ec_469',['bead_sort.c',['../d2/da8/bead__sort_8c.html',1,'']]], - ['binary_5fsearch_2ec_470',['binary_search.c',['../df/d3b/binary__search_8c.html',1,'']]], - ['binary_5fsearch_5ftree_2ec_471',['binary_search_tree.c',['../da/d02/binary__search__tree_8c.html',1,'']]], - ['bubble_5fsort_2ec_472',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]], - ['bubble_5fsort_5frecursion_2ec_473',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]] + ['bead_5fsort_2ec_471',['bead_sort.c',['../d2/da8/bead__sort_8c.html',1,'']]], + ['binary_5fsearch_2ec_472',['binary_search.c',['../df/d3b/binary__search_8c.html',1,'']]], + ['binary_5fsearch_5ftree_2ec_473',['binary_search_tree.c',['../da/d02/binary__search__tree_8c.html',1,'']]], + ['bubble_5fsort_2ec_474',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]], + ['bubble_5fsort_5f2_2ec_475',['bubble_sort_2.c',['../d2/d6d/bubble__sort__2_8c.html',1,'']]], + ['bubble_5fsort_5frecursion_2ec_476',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]] ]; diff --git a/search/files_10.js b/search/files_10.js index 2b1ae14b..f44a1e0b 100644 --- a/search/files_10.js +++ b/search/files_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['realtime_5fstats_2ec_517',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]] + ['realtime_5fstats_2ec_520',['realtime_stats.c',['../dc/d47/realtime__stats_8c.html',1,'']]] ]; diff --git a/search/files_11.js b/search/files_11.js index 73a67706..6058e946 100644 --- a/search/files_11.js +++ b/search/files_11.js @@ -1,16 +1,16 @@ var searchData= [ - ['segment_5ftree_2ec_518',['segment_tree.c',['../da/da0/segment__tree_8c.html',1,'']]], - ['selection_5fsort_2ec_519',['selection_sort.c',['../df/d83/selection__sort_8c.html',1,'']]], - ['server_2ec_520',['server.c',['../d1/d20/server_8c.html',1,'']]], - ['shell_5fsort2_2ec_521',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]], - ['so1_2ec_522',['so1.c',['../d0/d7f/so1_8c.html',1,'']]], - ['sol_2ec_523',['sol.c',['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)']]], - ['sol1_2ec_524',['sol1.c',['../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)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../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)']]], - ['sol2_2ec_525',['sol2.c',['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d6/d64/problem__7_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)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)']]], - ['sol3_2ec_526',['sol3.c',['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)'],['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)']]], - ['sol4_2ec_527',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]], - ['spirograph_2ec_528',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]], - ['strong_5fnumber_2ec_529',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]], - ['sudoku_5fsolver_2ec_530',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]] + ['segment_5ftree_2ec_521',['segment_tree.c',['../da/da0/segment__tree_8c.html',1,'']]], + ['selection_5fsort_2ec_522',['selection_sort.c',['../df/d83/selection__sort_8c.html',1,'']]], + ['server_2ec_523',['server.c',['../d1/d20/server_8c.html',1,'']]], + ['shell_5fsort2_2ec_524',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]], + ['so1_2ec_525',['so1.c',['../d0/d7f/so1_8c.html',1,'']]], + ['sol_2ec_526',['sol.c',['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)']]], + ['sol1_2ec_527',['sol1.c',['../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)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../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)']]], + ['sol2_2ec_528',['sol2.c',['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d6/d64/problem__7_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)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)']]], + ['sol3_2ec_529',['sol3.c',['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)'],['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)']]], + ['sol4_2ec_530',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]], + ['spirograph_2ec_531',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]], + ['strong_5fnumber_2ec_532',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]], + ['sudoku_5fsolver_2ec_533',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]] ]; diff --git a/search/files_12.js b/search/files_12.js index 7f8d5d30..5fbfcead 100644 --- a/search/files_12.js +++ b/search/files_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['test_5fmalloc_5fdbg_2ec_531',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]], - ['threaded_5fbinary_5ftrees_2ec_532',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]] + ['test_5fmalloc_5fdbg_2ec_534',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]], + ['threaded_5fbinary_5ftrees_2ec_535',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]] ]; diff --git a/search/files_13.js b/search/files_13.js index 6846ab1b..3b65dde0 100644 --- a/search/files_13.js +++ b/search/files_13.js @@ -1,6 +1,6 @@ var searchData= [ - ['udp_5fclient_2ec_533',['udp_client.c',['../da/de6/udp__client_8c.html',1,'']]], - ['udp_5fserver_2ec_534',['udp_server.c',['../d8/dca/udp__server_8c.html',1,'']]], - ['union_5ffind_2ec_535',['union_find.c',['../df/df3/union__find_8c.html',1,'']]] + ['udp_5fclient_2ec_536',['udp_client.c',['../da/de6/udp__client_8c.html',1,'']]], + ['udp_5fserver_2ec_537',['udp_server.c',['../d8/dca/udp__server_8c.html',1,'']]], + ['union_5ffind_2ec_538',['union_find.c',['../df/df3/union__find_8c.html',1,'']]] ]; diff --git a/search/files_14.js b/search/files_14.js index 492b035b..b0d59997 100644 --- a/search/files_14.js +++ b/search/files_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['vectors_5f3d_2ec_536',['vectors_3d.c',['../d5/db8/vectors__3d_8c.html',1,'']]] + ['vectors_5f3d_2ec_539',['vectors_3d.c',['../d5/db8/vectors__3d_8c.html',1,'']]] ]; diff --git a/search/files_2.js b/search/files_2.js index e3310341..79208434 100644 --- a/search/files_2.js +++ b/search/files_2.js @@ -1,8 +1,8 @@ var searchData= [ - ['c_5fatoi_5fstr_5fto_5finteger_2ec_474',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]], - ['cantor_5fset_2ec_475',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]], - ['cartesian_5fto_5fpolar_2ec_476',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]], - ['client_2ec_477',['client.c',['../dd/d93/client_8c.html',1,'']]], - ['collatz_2ec_478',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]] + ['c_5fatoi_5fstr_5fto_5finteger_2ec_477',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]], + ['cantor_5fset_2ec_478',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]], + ['cartesian_5fto_5fpolar_2ec_479',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]], + ['client_2ec_480',['client.c',['../dd/d93/client_8c.html',1,'']]], + ['collatz_2ec_481',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]] ]; diff --git a/search/files_3.js b/search/files_3.js index 3759dc11..295f48ab 100644 --- a/search/files_3.js +++ b/search/files_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['decimal_5fto_5fbinary_5frecursion_2ec_479',['decimal_to_binary_recursion.c',['../d8/d30/decimal__to__binary__recursion_8c.html',1,'']]], - ['doubly_5flinked_5flist_2ec_480',['doubly_linked_list.c',['../dd/d29/doubly__linked__list_8c.html',1,'']]], - ['durand_5fkerner_5froots_2ec_481',['durand_kerner_roots.c',['../da/d38/durand__kerner__roots_8c.html',1,'']]] + ['decimal_5fto_5fbinary_5frecursion_2ec_482',['decimal_to_binary_recursion.c',['../d8/d30/decimal__to__binary__recursion_8c.html',1,'']]], + ['doubly_5flinked_5flist_2ec_483',['doubly_linked_list.c',['../dd/d29/doubly__linked__list_8c.html',1,'']]], + ['durand_5fkerner_5froots_2ec_484',['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 41d49207..8178f6b7 100644 --- a/search/files_4.js +++ b/search/files_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['factorial_5flarge_5fnumber_2ec_482',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]], - ['fibonacci_5ffast_2ec_483',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]] + ['factorial_5flarge_5fnumber_2ec_485',['factorial_large_number.c',['../d6/d3d/factorial__large__number_8c.html',1,'']]], + ['fibonacci_5ffast_2ec_486',['fibonacci_fast.c',['../d4/d99/fibonacci__fast_8c.html',1,'']]] ]; diff --git a/search/files_5.js b/search/files_5.js index 966a25f8..e94b6bf2 100644 --- a/search/files_5.js +++ b/search/files_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['geometry_5fdatatypes_2eh_484',['geometry_datatypes.h',['../d0/dc7/geometry__datatypes_8h.html',1,'']]] + ['geometry_5fdatatypes_2eh_487',['geometry_datatypes.h',['../d0/dc7/geometry__datatypes_8h.html',1,'']]] ]; diff --git a/search/files_6.js b/search/files_6.js index afe117bc..ac6aac29 100644 --- a/search/files_6.js +++ b/search/files_6.js @@ -1,9 +1,9 @@ var searchData= [ - ['hash_5fadler32_2ec_485',['hash_adler32.c',['../d3/d39/hash__adler32_8c.html',1,'']]], - ['hash_5fcrc32_2ec_486',['hash_crc32.c',['../d9/dc9/hash__crc32_8c.html',1,'']]], - ['hash_5fdjb2_2ec_487',['hash_djb2.c',['../d4/de3/hash__djb2_8c.html',1,'']]], - ['hash_5fsdbm_2ec_488',['hash_sdbm.c',['../d7/d0c/hash__sdbm_8c.html',1,'']]], - ['hash_5fxor8_2ec_489',['hash_xor8.c',['../d0/d57/hash__xor8_8c.html',1,'']]], - ['hexadecimal_5fto_5foctal2_2ec_490',['hexadecimal_to_octal2.c',['../d0/dd9/hexadecimal__to__octal2_8c.html',1,'']]] + ['hash_5fadler32_2ec_488',['hash_adler32.c',['../d3/d39/hash__adler32_8c.html',1,'']]], + ['hash_5fcrc32_2ec_489',['hash_crc32.c',['../d9/dc9/hash__crc32_8c.html',1,'']]], + ['hash_5fdjb2_2ec_490',['hash_djb2.c',['../d4/de3/hash__djb2_8c.html',1,'']]], + ['hash_5fsdbm_2ec_491',['hash_sdbm.c',['../d7/d0c/hash__sdbm_8c.html',1,'']]], + ['hash_5fxor8_2ec_492',['hash_xor8.c',['../d0/d57/hash__xor8_8c.html',1,'']]], + ['hexadecimal_5fto_5foctal2_2ec_493',['hexadecimal_to_octal2.c',['../d0/dd9/hexadecimal__to__octal2_8c.html',1,'']]] ]; diff --git a/search/files_7.js b/search/files_7.js index 8aeaa2c8..2b4d0362 100644 --- a/search/files_7.js +++ b/search/files_7.js @@ -1,7 +1,7 @@ var searchData= [ - ['infix_5fto_5fpostfix_2ec_491',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]], - ['insertion_5fsort_2ec_492',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]], - ['insertion_5fsort_5frecursive_2ec_493',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]], - ['int_5fto_5fstring_2ec_494',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]] + ['infix_5fto_5fpostfix_2ec_494',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]], + ['insertion_5fsort_2ec_495',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]], + ['insertion_5fsort_5frecursive_2ec_496',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]], + ['int_5fto_5fstring_2ec_497',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]] ]; diff --git a/search/files_8.js b/search/files_8.js index 5ec04804..b36bbe52 100644 --- a/search/files_8.js +++ b/search/files_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['jump_5fsearch_2ec_495',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]] + ['jump_5fsearch_2ec_498',['jump_search.c',['../d6/d7b/jump__search_8c.html',1,'']]] ]; diff --git a/search/files_9.js b/search/files_9.js index eabd0cd7..1607e12a 100644 --- a/search/files_9.js +++ b/search/files_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['k_5fmeans_5fclustering_2ec_496',['k_means_clustering.c',['../d6/d76/k__means__clustering_8c.html',1,'']]], - ['kohonen_5fsom_5ftopology_2ec_497',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]], - ['kohonen_5fsom_5ftrace_2ec_498',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]] + ['k_5fmeans_5fclustering_2ec_499',['k_means_clustering.c',['../d6/d76/k__means__clustering_8c.html',1,'']]], + ['kohonen_5fsom_5ftopology_2ec_500',['kohonen_som_topology.c',['../d2/df6/kohonen__som__topology_8c.html',1,'']]], + ['kohonen_5fsom_5ftrace_2ec_501',['kohonen_som_trace.c',['../d0/d46/kohonen__som__trace_8c.html',1,'']]] ]; diff --git a/search/files_a.js b/search/files_a.js index 27be0cf7..f7375b68 100644 --- a/search/files_a.js +++ b/search/files_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['lu_5fdecompose_2ec_499',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]] + ['lu_5fdecompose_2ec_502',['lu_decompose.c',['../dc/d2e/lu__decompose_8c.html',1,'']]] ]; diff --git a/search/files_b.js b/search/files_b.js index 094f60cf..9eccc572 100644 --- a/search/files_b.js +++ b/search/files_b.js @@ -1,7 +1,7 @@ var searchData= [ - ['malloc_5fdbg_2ec_500',['malloc_dbg.c',['../db/d84/malloc__dbg_8c.html',1,'']]], - ['malloc_5fdbg_2eh_501',['malloc_dbg.h',['../d2/ddd/malloc__dbg_8h.html',1,'']]], - ['merge_5fsort_2ec_502',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]], - ['modified_5fbinary_5fsearch_2ec_503',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]] + ['malloc_5fdbg_2ec_503',['malloc_dbg.c',['../db/d84/malloc__dbg_8c.html',1,'']]], + ['malloc_5fdbg_2eh_504',['malloc_dbg.h',['../d2/ddd/malloc__dbg_8h.html',1,'']]], + ['merge_5fsort_2ec_505',['merge_sort.c',['../d2/d83/merge__sort_8c.html',1,'']]], + ['modified_5fbinary_5fsearch_2ec_506',['modified_binary_search.c',['../d3/d47/modified__binary__search_8c.html',1,'']]] ]; diff --git a/search/files_c.js b/search/files_c.js index a705a42d..32200fe8 100644 --- a/search/files_c.js +++ b/search/files_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['newton_5fraphson_5froot_2ec_504',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]] + ['newton_5fraphson_5froot_2ec_507',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]] ]; diff --git a/search/files_d.js b/search/files_d.js index b3fd30b7..29261bac 100644 --- a/search/files_d.js +++ b/search/files_d.js @@ -1,7 +1,7 @@ var searchData= [ - ['octal_5fto_5fhexadecimal_2ec_505',['octal_to_hexadecimal.c',['../d0/d8a/octal__to__hexadecimal_8c.html',1,'']]], - ['ode_5fforward_5feuler_2ec_506',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]], - ['ode_5fmidpoint_5feuler_2ec_507',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]], - ['ode_5fsemi_5fimplicit_5feuler_2ec_508',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]] + ['octal_5fto_5fhexadecimal_2ec_508',['octal_to_hexadecimal.c',['../d0/d8a/octal__to__hexadecimal_8c.html',1,'']]], + ['ode_5fforward_5feuler_2ec_509',['ode_forward_euler.c',['../d4/d07/ode__forward__euler_8c.html',1,'']]], + ['ode_5fmidpoint_5feuler_2ec_510',['ode_midpoint_euler.c',['../d1/dc2/ode__midpoint__euler_8c.html',1,'']]], + ['ode_5fsemi_5fimplicit_5feuler_2ec_511',['ode_semi_implicit_euler.c',['../d4/d99/ode__semi__implicit__euler_8c.html',1,'']]] ]; diff --git a/search/files_e.js b/search/files_e.js index 1d93fd4b..f717655f 100644 --- a/search/files_e.js +++ b/search/files_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['palindrome_2ec_509',['palindrome.c',['../df/d16/palindrome_8c.html',1,'']]], - ['poly_5fadd_2ec_510',['poly_add.c',['../d0/dcb/poly__add_8c.html',1,'']]], - ['prime_2ec_511',['prime.c',['../da/d93/prime_8c.html',1,'']]], - ['prime_5fseive_2ec_512',['prime_seive.c',['../db/dd5/prime__seive_8c.html',1,'']]] + ['palindrome_2ec_512',['palindrome.c',['../df/d16/palindrome_8c.html',1,'']]], + ['poly_5fadd_2ec_513',['poly_add.c',['../d0/dcb/poly__add_8c.html',1,'']]], + ['prime_2ec_514',['prime.c',['../da/d93/prime_8c.html',1,'']]], + ['prime_5fseive_2ec_515',['prime_seive.c',['../db/dd5/prime__seive_8c.html',1,'']]] ]; diff --git a/search/files_f.js b/search/files_f.js index 7fb7ad46..cb6a6eba 100644 --- a/search/files_f.js +++ b/search/files_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['qr_5fdecompose_2eh_513',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]], - ['qr_5fdecomposition_2ec_514',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]], - ['qr_5feigen_5fvalues_2ec_515',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]], - ['quaternions_2ec_516',['quaternions.c',['../df/d98/quaternions_8c.html',1,'']]] + ['qr_5fdecompose_2eh_516',['qr_decompose.h',['../d4/d68/qr__decompose_8h.html',1,'']]], + ['qr_5fdecomposition_2ec_517',['qr_decomposition.c',['../d5/d23/qr__decomposition_8c.html',1,'']]], + ['qr_5feigen_5fvalues_2ec_518',['qr_eigen_values.c',['../d7/d50/qr__eigen__values_8c.html',1,'']]], + ['quaternions_2ec_519',['quaternions.c',['../df/d98/quaternions_8c.html',1,'']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 8facbf24..b1fabcb8 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['_5frandom_537',['_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_540',['_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 ca8d9e70..688d97da 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,12 +1,12 @@ var searchData= [ - ['adaline_5factivation_538',['adaline_activation',['../da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa',1,'adaline_learning.c']]], - ['adaline_5ffit_539',['adaline_fit',['../da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd',1,'adaline_learning.c']]], - ['adaline_5ffit_5fsample_540',['adaline_fit_sample',['../da/d2a/group__adaline.html#ga20d3642e0a87f36fdb7bf91b023cd166',1,'adaline_learning.c']]], - ['adaline_5fget_5fweights_5fstr_541',['adaline_get_weights_str',['../da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120',1,'adaline_learning.c']]], - ['adaline_5fpredict_542',['adaline_predict',['../da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94',1,'adaline_learning.c']]], - ['add_5fdigit_543',['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_544',['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']]], - ['addmeminfo_545',['addMemInfo',['../db/d84/malloc__dbg_8c.html#afae235c0e32e4c8b7d67117da5f78946',1,'malloc_dbg.c']]], - ['adler32_546',['adler32',['../d7/d3b/group__hash.html#ga506f0227a3b5f9434a503e09a3cb672b',1,'hash_adler32.c']]] + ['adaline_5factivation_541',['adaline_activation',['../da/d2a/group__adaline.html#ga43576566b020c4157d4fb28f0dd45cfa',1,'adaline_learning.c']]], + ['adaline_5ffit_542',['adaline_fit',['../da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd',1,'adaline_learning.c']]], + ['adaline_5ffit_5fsample_543',['adaline_fit_sample',['../da/d2a/group__adaline.html#ga20d3642e0a87f36fdb7bf91b023cd166',1,'adaline_learning.c']]], + ['adaline_5fget_5fweights_5fstr_544',['adaline_get_weights_str',['../da/d2a/group__adaline.html#ga251695a79baa885cafdcf6d8ed4ac120',1,'adaline_learning.c']]], + ['adaline_5fpredict_545',['adaline_predict',['../da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94',1,'adaline_learning.c']]], + ['add_5fdigit_546',['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_547',['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']]], + ['addmeminfo_548',['addMemInfo',['../db/d84/malloc__dbg_8c.html#afae235c0e32e4c8b7d67117da5f78946',1,'malloc_dbg.c']]], + ['adler32_549',['adler32',['../d7/d3b/group__hash.html#ga506f0227a3b5f9434a503e09a3cb672b',1,'hash_adler32.c']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index c452458e..d9218c2d 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,19 +1,19 @@ var searchData= [ - ['poly_5fadd_659',['poly_add',['../d0/dcb/poly__add_8c.html#a6ff38afe4720527c9513139cbab460af',1,'poly_add.c']]], - ['poly_5ffunction_660',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]], - ['pop_661',['pop',['../db/d0c/infix__to__postfix_8c.html#a940cdcd27c40699eebb4ef113b2d9451',1,'infix_to_postfix.c']]], - ['postorder_5fdisplay_662',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]], - ['preorder_5fdisplay_663',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]], - ['prime_664',['prime',['../d1/ded/group__misc.html#gac1a7a8e00eeb590511465c28fae16e54',1,'prime_seive.c']]], - ['print_665',['print',['../dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0',1,'print(List *list): doubly_linked_list.c'],['../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_666',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]], - ['print_5fnumber_667',['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']]], - ['print_5fvector_668',['print_vector',['../de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e',1,'vectors_3d.c']]], - ['printeps_669',['printEPS',['../d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a',1,'k_means_clustering.c']]], - ['printleaks_670',['printLeaks',['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks(): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void): malloc_dbg.c']]], - ['problem_671',['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_672',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]], - ['purge_673',['purge',['../da/d02/binary__search__tree_8c.html#a01151353aa2d9688934ed39208133241',1,'binary_search_tree.c']]], - ['push_674',['push',['../db/d0c/infix__to__postfix_8c.html#a613462735d30cae1b85b606ecab30554',1,'infix_to_postfix.c']]] + ['poly_5fadd_663',['poly_add',['../d0/dcb/poly__add_8c.html#a6ff38afe4720527c9513139cbab460af',1,'poly_add.c']]], + ['poly_5ffunction_664',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]], + ['pop_665',['pop',['../db/d0c/infix__to__postfix_8c.html#a940cdcd27c40699eebb4ef113b2d9451',1,'infix_to_postfix.c']]], + ['postorder_5fdisplay_666',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]], + ['preorder_5fdisplay_667',['preorder_display',['../df/d3c/threaded__binary__trees_8c.html#a8169ba0dfd5b8183672e444d1434bf9c',1,'threaded_binary_trees.c']]], + ['prime_668',['prime',['../d1/ded/group__misc.html#gac1a7a8e00eeb590511465c28fae16e54',1,'prime_seive.c']]], + ['print_669',['print',['../dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0',1,'print(List *list): doubly_linked_list.c'],['../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_670',['print_matrix',['../d4/d68/qr__decompose_8h.html#a90562ce8c3707401e9c5809dece68d6a',1,'qr_decompose.h']]], + ['print_5fnumber_671',['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']]], + ['print_5fvector_672',['print_vector',['../de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e',1,'vectors_3d.c']]], + ['printeps_673',['printEPS',['../d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a',1,'k_means_clustering.c']]], + ['printleaks_674',['printLeaks',['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks(): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void): malloc_dbg.c']]], + ['problem_675',['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_676',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]], + ['purge_677',['purge',['../da/d02/binary__search__tree_8c.html#a01151353aa2d9688934ed39208133241',1,'binary_search_tree.c']]], + ['push_678',['push',['../db/d0c/infix__to__postfix_8c.html#a613462735d30cae1b85b606ecab30554',1,'infix_to_postfix.c']]] ]; diff --git a/search/functions_11.js b/search/functions_11.js index 705afa84..a276f85b 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['qr_5fdecompose_675',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]], - ['quat_5ffrom_5feuler_676',['quat_from_euler',['../dc/d9a/group__quats.html#ga4779f448daaf806ce5e750c13b3e0965',1,'quaternions.c']]], - ['quaternion_5fmultiply_677',['quaternion_multiply',['../dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1',1,'quaternions.c']]] + ['qr_5fdecompose_679',['qr_decompose',['../d4/d68/qr__decompose_8h.html#a45c7640d9d22c89c11beb1f567843c56',1,'qr_decompose.h']]], + ['quat_5ffrom_5feuler_680',['quat_from_euler',['../dc/d9a/group__quats.html#ga4779f448daaf806ce5e750c13b3e0965',1,'quaternions.c']]], + ['quaternion_5fmultiply_681',['quaternion_multiply',['../dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1',1,'quaternions.c']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 673d3ee7..99b98483 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['recursioninsertionsort_678',['RecursionInsertionSort',['../d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359',1,'insertion_sort_recursive.c']]], - ['remove_5fdigits_679',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]] + ['recursioninsertionsort_682',['RecursionInsertionSort',['../d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359',1,'insertion_sort_recursive.c']]], + ['remove_5fdigits_683',['remove_digits',['../db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1',1,'sol1.c']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index eafa0f4f..09ece29a 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,28 +1,28 @@ var searchData= [ - ['save_5f2d_5fdata_680',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]], - ['save_5fnd_5fdata_681',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]], - ['save_5fu_5fmatrix_682',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]], - ['sdbm_683',['sdbm',['../d7/d3b/group__hash.html#ga8ab8eeb35f8ccfcad89091b5fdd4f605',1,'hash_sdbm.c']]], - ['search_684',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'search(node *root, int ele): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b',1,'search(List *list, double value): doubly_linked_list.c']]], - ['segment_5ftree_5fbuild_685',['segment_tree_build',['../da/da0/segment__tree_8c.html#aae59daf9a0dc33f8cbc7a525a616ee75',1,'segment_tree.c']]], - ['segment_5ftree_5fdispose_686',['segment_tree_dispose',['../da/da0/segment__tree_8c.html#af20a9f373083d3f701e1cd92560cef01',1,'segment_tree.c']]], - ['segment_5ftree_5finit_687',['segment_tree_init',['../da/da0/segment__tree_8c.html#acecc34fd89923ab41dcee3a779622816',1,'segment_tree.c']]], - ['segment_5ftree_5fprint_5fint_688',['segment_tree_print_int',['../da/da0/segment__tree_8c.html#a776abfa81cde9016a2885dca7cfc05ab',1,'segment_tree.c']]], - ['segment_5ftree_5fquery_689',['segment_tree_query',['../da/da0/segment__tree_8c.html#af61bd96660cb53f49f28d60a5f1d0c91',1,'segment_tree.c']]], - ['segment_5ftree_5fupdate_690',['segment_tree_update',['../da/da0/segment__tree_8c.html#a1e81a9bbf01716f1b4fb27ef36a9098c',1,'segment_tree.c']]], - ['selectionsort_691',['selectionSort',['../df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617',1,'selection_sort.c']]], - ['semi_5fimplicit_5feuler_692',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]], - ['semi_5fimplicit_5feuler_5fstep_693',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]], - ['shell_5fsort_694',['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_695',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]], - ['sigma_696',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]], - ['sigma2_697',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]], - ['solve_698',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]], - ['spirograph_699',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]], - ['stats_5fcomputer1_700',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]], - ['stats_5fcomputer2_701',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]], - ['sum_5fof_5fdivisors_702',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]], - ['sum_5fof_5fprimes_703',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]], - ['swap_704',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort_recursion.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b): merge_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): selection_sort.c']]] + ['save_5f2d_5fdata_684',['save_2d_data',['../d1/d6b/group__kohonen__2d.html#ga6824dc6d973eb3339af7aef5fea78b0c',1,'kohonen_som_topology.c']]], + ['save_5fnd_5fdata_685',['save_nd_data',['../d0/dcb/group__kohonen__1d.html#ga7b84b14e60f47812b581d1f93057c85a',1,'kohonen_som_trace.c']]], + ['save_5fu_5fmatrix_686',['save_u_matrix',['../d1/d6b/group__kohonen__2d.html#ga49d35f68f5d11d8ef6f8cce0d0e7bcba',1,'kohonen_som_topology.c']]], + ['sdbm_687',['sdbm',['../d7/d3b/group__hash.html#ga8ab8eeb35f8ccfcad89091b5fdd4f605',1,'hash_sdbm.c']]], + ['search_688',['search',['../df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c',1,'search(node *root, int ele): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b',1,'search(List *list, double value): doubly_linked_list.c']]], + ['segment_5ftree_5fbuild_689',['segment_tree_build',['../da/da0/segment__tree_8c.html#aae59daf9a0dc33f8cbc7a525a616ee75',1,'segment_tree.c']]], + ['segment_5ftree_5fdispose_690',['segment_tree_dispose',['../da/da0/segment__tree_8c.html#af20a9f373083d3f701e1cd92560cef01',1,'segment_tree.c']]], + ['segment_5ftree_5finit_691',['segment_tree_init',['../da/da0/segment__tree_8c.html#acecc34fd89923ab41dcee3a779622816',1,'segment_tree.c']]], + ['segment_5ftree_5fprint_5fint_692',['segment_tree_print_int',['../da/da0/segment__tree_8c.html#a776abfa81cde9016a2885dca7cfc05ab',1,'segment_tree.c']]], + ['segment_5ftree_5fquery_693',['segment_tree_query',['../da/da0/segment__tree_8c.html#af61bd96660cb53f49f28d60a5f1d0c91',1,'segment_tree.c']]], + ['segment_5ftree_5fupdate_694',['segment_tree_update',['../da/da0/segment__tree_8c.html#a1e81a9bbf01716f1b4fb27ef36a9098c',1,'segment_tree.c']]], + ['selectionsort_695',['selectionSort',['../df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617',1,'selection_sort.c']]], + ['semi_5fimplicit_5feuler_696',['semi_implicit_euler',['../d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55',1,'ode_semi_implicit_euler.c']]], + ['semi_5fimplicit_5feuler_5fstep_697',['semi_implicit_euler_step',['../d4/d99/ode__semi__implicit__euler_8c.html#a720b7e995d2bbc615f94a2c7dbcf84eb',1,'ode_semi_implicit_euler.c']]], + ['shell_5fsort_698',['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_699',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]], + ['sigma_700',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]], + ['sigma2_701',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]], + ['solve_702',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]], + ['spirograph_703',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]], + ['stats_5fcomputer1_704',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]], + ['stats_5fcomputer2_705',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]], + ['sum_5fof_5fdivisors_706',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]], + ['sum_5fof_5fprimes_707',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]], + ['swap_708',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): bubble_sort_recursion.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b): merge_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second): selection_sort.c']]] ]; diff --git a/search/functions_14.js b/search/functions_14.js index 1c00bc93..802d04d6 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,21 +1,21 @@ var searchData= [ - ['test_705',['test',['../d8/d30/decimal__to__binary__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): decimal_to_binary_recursion.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): segment_tree.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test(): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): strong_number.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'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort_recursion.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort_recursive.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): selection_sort.c']]], - ['test1_706',['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'],['../d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]], - ['test2_707',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): k_means_clustering.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'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]], - ['test3_708',['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'],['../d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c']]], - ['test_5f2d_5fclasses_709',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]], - ['test_5f3d_5fclasses_710',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]], - ['test_5f3d_5fclasses1_711',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]], - ['test_5f3d_5fclasses2_712',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]], - ['test_5fadler32_713',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]], - ['test_5fc_5fatoi_714',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]], - ['test_5fcircle_715',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]], - ['test_5fcrc32_716',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]], - ['test_5fdjb2_717',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]], - ['test_5ffunction_718',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]], - ['test_5flamniscate_719',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]], - ['test_5fsdbm_720',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]], - ['test_5fxor8_721',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]], - ['to_5fpolar_722',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]] + ['test_709',['test',['../d8/d30/decimal__to__binary__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): decimal_to_binary_recursion.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): segment_tree.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void): spirograph.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): cartesian_to_polar.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test(): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): strong_number.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'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): bubble_sort_2.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test(): bubble_sort_recursion.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): insertion_sort_recursive.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test(): selection_sort.c']]], + ['test1_710',['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'],['../d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1(): qr_eigen_values.c']]], + ['test2_711',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): k_means_clustering.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'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2(): qr_eigen_values.c']]], + ['test3_712',['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'],['../d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3): poly_add.c']]], + ['test_5f2d_5fclasses_713',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]], + ['test_5f3d_5fclasses_714',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]], + ['test_5f3d_5fclasses1_715',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]], + ['test_5f3d_5fclasses2_716',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]], + ['test_5fadler32_717',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]], + ['test_5fc_5fatoi_718',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]], + ['test_5fcircle_719',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]], + ['test_5fcrc32_720',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]], + ['test_5fdjb2_721',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]], + ['test_5ffunction_722',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]], + ['test_5flamniscate_723',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]], + ['test_5fsdbm_724',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]], + ['test_5fxor8_725',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]], + ['to_5fpolar_726',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]] ]; diff --git a/search/functions_15.js b/search/functions_15.js index f0702d58..8d8ff1c6 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['unit_5fvec_723',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]] + ['unit_5fvec_727',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]] ]; diff --git a/search/functions_16.js b/search/functions_16.js index c4f9eab3..fb9c540b 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -1,10 +1,10 @@ var searchData= [ - ['vector_5fadd_724',['vector_add',['../de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4',1,'vectors_3d.c']]], - ['vector_5fdot_725',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]], - ['vector_5fmag_726',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]], - ['vector_5fnorm_727',['vector_norm',['../de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de',1,'vectors_3d.c']]], - ['vector_5fprod_728',['vector_prod',['../de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5',1,'vectors_3d.c']]], - ['vector_5fproj_729',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]], - ['vector_5fsub_730',['vector_sub',['../de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc',1,'vector_sub(const vec_3d *a, const vec_3d *b): vectors_3d.c'],['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'vector_sub(double *a, double *b, double *out, int L): qr_decompose.h']]] + ['vector_5fadd_728',['vector_add',['../de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4',1,'vectors_3d.c']]], + ['vector_5fdot_729',['vector_dot',['../d4/d68/qr__decompose_8h.html#a3a584b79941a43d775f9d4ce446dbe05',1,'qr_decompose.h']]], + ['vector_5fmag_730',['vector_mag',['../d4/d68/qr__decompose_8h.html#abeec1f78a7a7e7251687e75340331212',1,'qr_decompose.h']]], + ['vector_5fnorm_731',['vector_norm',['../de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de',1,'vectors_3d.c']]], + ['vector_5fprod_732',['vector_prod',['../de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5',1,'vectors_3d.c']]], + ['vector_5fproj_733',['vector_proj',['../d4/d68/qr__decompose_8h.html#a82b20e027437df768d7e994cf4cae29f',1,'qr_decompose.h']]], + ['vector_5fsub_734',['vector_sub',['../de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc',1,'vector_sub(const vec_3d *a, const vec_3d *b): vectors_3d.c'],['../d4/d68/qr__decompose_8h.html#a6b6a0e75e75ff7919057dd275bb69145',1,'vector_sub(double *a, double *b, double *out, int L): qr_decompose.h']]] ]; diff --git a/search/functions_17.js b/search/functions_17.js index ad4c91c9..78f81c56 100644 --- a/search/functions_17.js +++ b/search/functions_17.js @@ -1,4 +1,4 @@ var searchData= [ - ['xor8_731',['xor8',['../d7/d3b/group__hash.html#gae4836b42b998b336298f3b19dcc9cdeb',1,'hash_xor8.c']]] + ['xor8_735',['xor8',['../d7/d3b/group__hash.html#gae4836b42b998b336298f3b19dcc9cdeb',1,'hash_xor8.c']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index 721febc5..634096f1 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,8 +1,9 @@ var searchData= [ - ['bead_5fsort_547',['bead_sort',['../d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8',1,'bead_sort.c']]], - ['binarysearch_548',['binarySearch',['../d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890',1,'modified_binary_search.c']]], - ['binarysearch1_549',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]], - ['binarysearch2_550',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]], - ['bubblesort_551',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort_recursion.c']]] + ['bead_5fsort_550',['bead_sort',['../d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8',1,'bead_sort.c']]], + ['binarysearch_551',['binarySearch',['../d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890',1,'modified_binary_search.c']]], + ['binarysearch1_552',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]], + ['binarysearch2_553',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]], + ['bubble_5fsort_554',['bubble_sort',['../d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281',1,'bubble_sort_2.c']]], + ['bubblesort_555',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size): bubble_sort_recursion.c']]] ]; diff --git a/search/functions_3.js b/search/functions_3.js index 023e9d7f..6c00ecb6 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,20 +1,20 @@ var searchData= [ - ['c_5fatoi_552',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]], - ['calculatecentroid_553',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]], - ['calculatenearst_554',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]], - ['calloc_5fdbg_555',['calloc_dbg',['../db/d84/malloc__dbg_8c.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c']]], - ['check_5fnumber_556',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n): sol2.c']]], - ['check_5ftermination_557',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]], - ['collatz_558',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]], - ['compare_559',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]], - ['complex_5fstr_560',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]], - ['convert_561',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'infix_to_postfix.c']]], - ['count_562',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'prime_seive.c']]], - ['count_5fdivisors_563',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]], - ['crc32_564',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]], - ['create_565',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]], - ['create_5fmatrix_566',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]], - ['create_5fnode_567',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]], - ['create_5fpolynomial_568',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]] + ['c_5fatoi_556',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]], + ['calculatecentroid_557',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]], + ['calculatenearst_558',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]], + ['calloc_5fdbg_559',['calloc_dbg',['../db/d84/malloc__dbg_8c.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#aec6b5ee323e5338f23a1ce6fe9974f25',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName): malloc_dbg.c']]], + ['check_5fnumber_560',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n): sol2.c']]], + ['check_5ftermination_561',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]], + ['collatz_562',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]], + ['compare_563',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]], + ['complex_5fstr_564',['complex_str',['../da/d38/durand__kerner__roots_8c.html#afa5b04ce11475d67049cba8273741fb7',1,'durand_kerner_roots.c']]], + ['convert_565',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'infix_to_postfix.c']]], + ['count_566',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'prime_seive.c']]], + ['count_5fdivisors_567',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]], + ['crc32_568',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]], + ['create_569',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]], + ['create_5fmatrix_570',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]], + ['create_5fnode_571',['create_node',['../df/d3c/threaded__binary__trees_8c.html#ab21d1d36d95001defbca2f6abd4d410c',1,'threaded_binary_trees.c']]], + ['create_5fpolynomial_572',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index 71193b8a..c82d0ddd 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,13 +1,13 @@ var searchData= [ - ['d_5ffunc_569',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]], - ['decimal_5fto_5fbinary_570',['decimal_to_binary',['../d8/d30/decimal__to__binary__recursion_8c.html#acbbe6358ec95b3201865a72b2ac522c8',1,'decimal_to_binary_recursion.c']]], - ['delete_571',['delete',['../da/d02/binary__search__tree_8c.html#a748f3966920e2fd197906be1e151b127',1,'delete(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446',1,'delete(List *list, int pos): doubly_linked_list.c']]], - ['delete_5fadaline_572',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]], - ['delete_5fbt_573',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]], - ['delete_5fnumber_574',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]], - ['display_575',['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'],['../dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bubble_sort.c']]], - ['display_5fpolynomial_576',['display_polynomial',['../d0/dcb/poly__add_8c.html#ab9b9bedcb99f279d491d1b856791a36d',1,'poly_add.c']]], - ['djb2_577',['djb2',['../d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b',1,'hash_djb2.c']]], - ['dot_5fprod_578',['dot_prod',['../de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84',1,'vectors_3d.c']]] + ['d_5ffunc_573',['d_func',['../dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337',1,'newton_raphson_root.c']]], + ['decimal_5fto_5fbinary_574',['decimal_to_binary',['../d8/d30/decimal__to__binary__recursion_8c.html#acbbe6358ec95b3201865a72b2ac522c8',1,'decimal_to_binary_recursion.c']]], + ['delete_575',['delete',['../da/d02/binary__search__tree_8c.html#a748f3966920e2fd197906be1e151b127',1,'delete(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446',1,'delete(List *list, int pos): doubly_linked_list.c']]], + ['delete_5fadaline_576',['delete_adaline',['../da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665',1,'adaline_learning.c']]], + ['delete_5fbt_577',['delete_bt',['../df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317',1,'threaded_binary_trees.c']]], + ['delete_5fnumber_578',['delete_number',['../d6/d3d/factorial__large__number_8c.html#ab5c854e0df76165c31899e69eceeeaae',1,'factorial_large_number.c']]], + ['display_579',['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'],['../dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971',1,'display(const int *arr, int n): bubble_sort.c']]], + ['display_5fpolynomial_580',['display_polynomial',['../d0/dcb/poly__add_8c.html#ab9b9bedcb99f279d491d1b856791a36d',1,'poly_add.c']]], + ['djb2_581',['djb2',['../d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b',1,'hash_djb2.c']]], + ['dot_5fprod_582',['dot_prod',['../de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84',1,'vectors_3d.c']]] ]; diff --git a/search/functions_5.js b/search/functions_5.js index e09804d6..3de26721 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,8 +1,8 @@ var searchData= [ - ['editinfo_579',['editInfo',['../db/d84/malloc__dbg_8c.html#a8ac3a93239838ac88c18df64c58b9275',1,'malloc_dbg.c']]], - ['eigen_5fvalues_580',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]], - ['euler_5ffrom_5fquat_581',['euler_from_quat',['../dc/d9a/group__quats.html#ga1afd165100e9b02b86e3bd11b50f3b06',1,'quaternions.c']]], - ['exact_5fsolution_582',['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']]], - ['example_583',['example',['../dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422',1,'doubly_linked_list.c']]] + ['editinfo_583',['editInfo',['../db/d84/malloc__dbg_8c.html#a8ac3a93239838ac88c18df64c58b9275',1,'malloc_dbg.c']]], + ['eigen_5fvalues_584',['eigen_values',['../d7/d50/qr__eigen__values_8c.html#a0d8ed79786d17df48396b333c09d05bb',1,'qr_eigen_values.c']]], + ['euler_5ffrom_5fquat_585',['euler_from_quat',['../dc/d9a/group__quats.html#ga1afd165100e9b02b86e3bd11b50f3b06',1,'quaternions.c']]], + ['exact_5fsolution_586',['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']]], + ['example_587',['example',['../dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422',1,'doubly_linked_list.c']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index 91c6e52e..47dac5b9 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['fib_584',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]], - ['find_585',['find',['../da/d02/binary__search__tree_8c.html#adff4c6248834a9944a1fb03a20230c9c',1,'find(node *root, int data): binary_search_tree.c'],['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'find(int *p, int x): union_find.c']]], - ['forward_5feuler_586',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]], - ['forward_5feuler_5fstep_587',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]], - ['free_5fdbg_588',['free_dbg',['../db/d84/malloc__dbg_8c.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c']]], - ['free_5fmemory_589',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]], - ['free_5fpoly_590',['free_poly',['../d0/dcb/poly__add_8c.html#a5a103fff33166d6e4d975b8b63c6e895',1,'poly_add.c']]], - ['func_591',['func',['../dd/d93/client_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): client.c'],['../d1/d20/server_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): server.c'],['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'func(double complex x): newton_raphson_root.c']]] + ['fib_588',['fib',['../d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3',1,'fibonacci_fast.c']]], + ['find_589',['find',['../da/d02/binary__search__tree_8c.html#adff4c6248834a9944a1fb03a20230c9c',1,'find(node *root, int data): binary_search_tree.c'],['../df/df3/union__find_8c.html#a3e13b69cce5a1b25ae034798092f3d86',1,'find(int *p, int x): union_find.c']]], + ['forward_5feuler_590',['forward_euler',['../d4/d07/ode__forward__euler_8c.html#aaf88ad8f9f7c39fc38f3f03d6fea9df9',1,'ode_forward_euler.c']]], + ['forward_5feuler_5fstep_591',['forward_euler_step',['../d4/d07/ode__forward__euler_8c.html#ae6c9413953c8d9d4bc9e374b29586350',1,'ode_forward_euler.c']]], + ['free_5fdbg_592',['free_dbg',['../db/d84/malloc__dbg_8c.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a3f9195a04ac8e8a9868ee3e416db7e8c',1,'free_dbg(void *ptrToFree): malloc_dbg.c']]], + ['free_5fmemory_593',['free_memory',['../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d',1,'cantor_set.c']]], + ['free_5fpoly_594',['free_poly',['../d0/dcb/poly__add_8c.html#a5a103fff33166d6e4d975b8b63c6e895',1,'poly_add.c']]], + ['func_595',['func',['../dd/d93/client_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): client.c'],['../d1/d20/server_8c.html#ac17020a38607ab29ce18939d5194a32a',1,'func(int sockfd): server.c'],['../dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925',1,'func(double complex x): newton_raphson_root.c']]] ]; diff --git a/search/functions_7.js b/search/functions_7.js index 31917dee..444e362a 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,18 +1,18 @@ var searchData= [ - ['gcd_592',['gcd',['../d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol3.c']]], - ['get_5fclock_5fdiff_593',['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_5fcross_5fmatrix_594',['get_cross_matrix',['../de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849',1,'vectors_3d.c']]], - ['get_5fdigits_595',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]], - ['get_5fdivisors_596',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]], - ['get_5fmin_5f2d_597',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]], - ['get_5fmonth_5fdays_598',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]], - ['get_5fnext_5fabundant_599',['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_600',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]], - ['get_5fnumber_601',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]], - ['get_5fperfect_5fnumber_602',['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_603',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]], - ['get_5frand_604',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]], - ['getmax_605',['getMax',['../da/d02/binary__search__tree_8c.html#ad297e528a7bb8604ca93af149d609150',1,'binary_search_tree.c']]], - ['getprecedence_606',['getPrecedence',['../db/d0c/infix__to__postfix_8c.html#ac91f38ad7885fca93e39325361a5c787',1,'infix_to_postfix.c']]] + ['gcd_596',['gcd',['../d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d',1,'sol3.c']]], + ['get_5fclock_5fdiff_597',['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_5fcross_5fmatrix_598',['get_cross_matrix',['../de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849',1,'vectors_3d.c']]], + ['get_5fdigits_599',['get_digits',['../d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783',1,'sol1.c']]], + ['get_5fdivisors_600',['get_divisors',['../d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215',1,'sol1.c']]], + ['get_5fmin_5f2d_601',['get_min_2d',['../d1/d6b/group__kohonen__2d.html#gadc22d512c00a9f5799ee067f4fb90b4b',1,'kohonen_som_topology.c']]], + ['get_5fmonth_5fdays_602',['get_month_days',['../dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75',1,'sol1.c']]], + ['get_5fnext_5fabundant_603',['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_604',['get_next_unknown',['../d5/df4/group__sudoku.html#ga62e94fc39f116e2c81daed8f5437431b',1,'sudoku_solver.c']]], + ['get_5fnumber_605',['get_number',['../db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8',1,'sol1.c']]], + ['get_5fperfect_5fnumber_606',['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_607',['get_product',['../dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd',1,'sol1.c']]], + ['get_5frand_608',['get_rand',['../d6/d2e/cartesian__to__polar_8c.html#a60e62b809ca9dcb1b20a140b30d30f60',1,'cartesian_to_polar.c']]], + ['getmax_609',['getMax',['../da/d02/binary__search__tree_8c.html#ad297e528a7bb8604ca93af149d609150',1,'binary_search_tree.c']]], + ['getprecedence_610',['getPrecedence',['../db/d0c/infix__to__postfix_8c.html#ac91f38ad7885fca93e39325361a5c787',1,'infix_to_postfix.c']]] ]; diff --git a/search/functions_8.js b/search/functions_8.js index 877cb56e..15023687 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['height_607',['height',['../da/d02/binary__search__tree_8c.html#ae4a66d8b0c2b0d626aea45977e358c83',1,'binary_search_tree.c']]], - ['hex_5fto_5foct_608',['hex_to_oct',['../d0/dd9/hexadecimal__to__octal2_8c.html#a4d7524efe6e2917b3674445b7269906b',1,'hexadecimal_to_octal2.c']]] + ['height_611',['height',['../da/d02/binary__search__tree_8c.html#ae4a66d8b0c2b0d626aea45977e358c83',1,'binary_search_tree.c']]], + ['hex_5fto_5foct_612',['hex_to_oct',['../d0/dd9/hexadecimal__to__octal2_8c.html#a4d7524efe6e2917b3674445b7269906b',1,'hexadecimal_to_octal2.c']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index 871ceb4a..64d474b5 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,22 +1,22 @@ var searchData= [ - ['inlist_609',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]], - ['inorder_610',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]], - ['inorder_5fdisplay_611',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]], - ['insert_612',['insert',['../da/d02/binary__search__tree_8c.html#a73152b9ccb4aa5cd4c1bacd4188bb2de',1,'insert(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos): doubly_linked_list.c']]], - ['insert_5fbt_613',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]], - ['insertionsort_614',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]], - ['int_5fto_5fstring_615',['int_to_string',['../dd/d53/int__to__string_8c.html#a969911f32f1c435bb2bf166574ef9ae5',1,'int_to_string.c']]], - ['is_5fabundant_616',['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_617',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]], - ['is_5fleap_5fyear_618',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]], - ['is_5fpalindromic_619',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]], - ['is_5fprime_620',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]], - ['is_5fsum_5fof_5fabundant_621',['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']]], - ['isempty_622',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'infix_to_postfix.c']]], - ['isoprnd_623',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]], - ['ispalindrome_624',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]], - ['isprime_625',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]], - ['isprime_626',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]], - ['isstrong_627',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]] + ['inlist_613',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]], + ['inorder_614',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]], + ['inorder_5fdisplay_615',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]], + ['insert_616',['insert',['../da/d02/binary__search__tree_8c.html#a73152b9ccb4aa5cd4c1bacd4188bb2de',1,'insert(node *root, int data): binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos): doubly_linked_list.c']]], + ['insert_5fbt_617',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]], + ['insertionsort_618',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]], + ['int_5fto_5fstring_619',['int_to_string',['../dd/d53/int__to__string_8c.html#a969911f32f1c435bb2bf166574ef9ae5',1,'int_to_string.c']]], + ['is_5fabundant_620',['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_621',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]], + ['is_5fleap_5fyear_622',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]], + ['is_5fpalindromic_623',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]], + ['is_5fprime_624',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]], + ['is_5fsum_5fof_5fabundant_625',['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']]], + ['isempty_626',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'infix_to_postfix.c']]], + ['isoprnd_627',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]], + ['ispalindrome_628',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]], + ['isprime_629',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]], + ['isprime_630',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]], + ['isstrong_631',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]] ]; diff --git a/search/functions_a.js b/search/functions_a.js index f9301807..9549b12a 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['join_628',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]], - ['jump_5fsearch_629',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]] + ['join_632',['join',['../df/df3/union__find_8c.html#af2f3ff6d98641f7d3be11f071c97908a',1,'union_find.c']]], + ['jump_5fsearch_633',['jump_search',['../d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603',1,'jump_search.c']]] ]; diff --git a/search/functions_b.js b/search/functions_b.js index 5ccbaa8b..ed5e6026 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,9 +1,9 @@ var searchData= [ - ['kmeans_630',['kMeans',['../d8/d71/group__k__means.html#gad229b1dc406cb5ea510f26a373ed8bfd',1,'k_means_clustering.c']]], - ['kohonen_5fdata_5f3d_631',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]], - ['kohonen_5fget_5fmin_5f1d_632',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]], - ['kohonen_5fsom_633',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]], - ['kohonen_5fsom_5ftracer_634',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]], - ['kohonen_5fupdate_5fweights_635',['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']]] + ['kmeans_634',['kMeans',['../d8/d71/group__k__means.html#gad229b1dc406cb5ea510f26a373ed8bfd',1,'k_means_clustering.c']]], + ['kohonen_5fdata_5f3d_635',['kohonen_data_3d',['../d1/d6b/group__kohonen__2d.html#ga8df35f04c1762a01dcf108fa13b897d6',1,'kohonen_som_topology.c']]], + ['kohonen_5fget_5fmin_5f1d_636',['kohonen_get_min_1d',['../d0/dcb/group__kohonen__1d.html#ga4a57a413a3cef286a7da6d4666575586',1,'kohonen_som_trace.c']]], + ['kohonen_5fsom_637',['kohonen_som',['../d1/d6b/group__kohonen__2d.html#gacb42eda8af6ebd6a141a34ab00a0b710',1,'kohonen_som_topology.c']]], + ['kohonen_5fsom_5ftracer_638',['kohonen_som_tracer',['../d0/dcb/group__kohonen__1d.html#gaeaeffbff2be4d5d15b0d4f10f846abde',1,'kohonen_som_trace.c']]], + ['kohonen_5fupdate_5fweights_639',['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_c.js b/search/functions_c.js index c15cfaed..49a66e7c 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,6 +1,6 @@ var searchData= [ - ['lazy_5fsort_636',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]], - ['lcm_637',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]], - ['lu_5fdecomposition_638',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]] + ['lazy_5fsort_640',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]], + ['lcm_641',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]], + ['lu_5fdecomposition_642',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index 700eea63..a3326d83 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,13 +1,13 @@ var searchData= [ - ['main_639',['main',['../dd/d93/client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): client.c'],['../d1/d20/server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): server.c'],['../da/de6/udp__client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_client.c'],['../d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_server.c'],['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): decimal_to_binary_recursion.c'],['../d0/dd9/hexadecimal__to__octal2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hexadecimal_to_octal2.c'],['../db/d0c/infix__to__postfix_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): infix_to_postfix.c'],['../dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): octal_to_hexadecimal.c'],['../da/d02/binary__search__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): binary_search_tree.c'],['../da/da0/segment__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): segment_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): doubly_linked_list.c'],['../dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): test_malloc_dbg.c'],['../d5/db8/vectors__3d_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../d3/d39/hash__adler32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_adler32.c'],['../d9/dc9/hash__crc32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_crc32.c'],['../d4/de3/hash__djb2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_djb2.c'],['../d7/d0c/hash__sdbm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_sdbm.c'],['../d0/d57/hash__xor8_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_xor8.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): k_means_clustering.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'],['../df/d16/palindrome_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): palindrome.c'],['../d0/dcb/poly__add_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): poly_add.c'],['../da/d93/prime_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): prime.c'],['../d1/ded/group__misc.html#gac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): strong_number.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'],['../da/d56/problem__1_2sol3_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'],['../dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol3.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'],['../d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.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'],['../dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_recursion.c'],['../de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): insertion_sort_recursive.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): selection_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]], - ['malloc_5fdbg_640',['malloc_dbg',['../db/d84/malloc__dbg_8c.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c']]], - ['mat_5fmul_641',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]], - ['merge_642',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]], - ['merge_5fsort_643',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]], - ['midpoint_5feuler_644',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]], - ['midpoint_5feuler_5fstep_645',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]], - ['minimum_646',['minimum',['../da/da0/segment__tree_8c.html#a93bfab032ce9dbc0c1feaeee32a885fb',1,'segment_tree.c']]], - ['modifiedbinarysearch_647',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]], - ['multiply_648',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]] + ['main_643',['main',['../dd/d93/client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): client.c'],['../d1/d20/server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): server.c'],['../da/de6/udp__client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_client.c'],['../d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): udp_server.c'],['../d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): c_atoi_str_to_integer.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): decimal_to_binary_recursion.c'],['../d0/dd9/hexadecimal__to__octal2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hexadecimal_to_octal2.c'],['../db/d0c/infix__to__postfix_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): infix_to_postfix.c'],['../dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): octal_to_hexadecimal.c'],['../da/d02/binary__search__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): binary_search_tree.c'],['../da/da0/segment__tree_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): segment_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): threaded_binary_trees.c'],['../dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): doubly_linked_list.c'],['../dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): test_malloc_dbg.c'],['../d5/db8/vectors__3d_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): vectors_3d.c'],['../d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): spirograph.c'],['../d3/d39/hash__adler32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_adler32.c'],['../d9/dc9/hash__crc32_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_crc32.c'],['../d4/de3/hash__djb2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_djb2.c'],['../d7/d0c/hash__sdbm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_sdbm.c'],['../d0/d57/hash__xor8_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): hash_xor8.c'],['../dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627',1,'main(int argc, char **argv): adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): k_means_clustering.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'],['../df/d16/palindrome_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): palindrome.c'],['../d0/dcb/poly__add_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): poly_add.c'],['../da/d93/prime_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): prime.c'],['../d1/ded/group__misc.html#gac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): prime_seive.c'],['../d4/dcc/strong__number_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): strong_number.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'],['../da/d56/problem__1_2sol3_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'],['../dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol2.c'],['../d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): sol3.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'],['../d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): sol2.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'],['../dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): bubble_sort.c'],['../d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_2.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4',1,'main(): bubble_sort_recursion.c'],['../de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): insertion_sort_recursive.c'],['../d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe',1,'main(void): merge_sort.c'],['../df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c',1,'main(int argc, const char *argv[]): selection_sort.c'],['../d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main(int argc, char *argv[]): shell_sort2.c']]], + ['malloc_5fdbg_644',['malloc_dbg',['../db/d84/malloc__dbg_8c.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#a10238aaeea60178d31fbb74347e941aa',1,'malloc_dbg(size_t bytes, int line, const char *filename, const char *functionName): malloc_dbg.c']]], + ['mat_5fmul_645',['mat_mul',['../d7/d50/qr__eigen__values_8c.html#a741477692f001a805b0fea942c9dc2b9',1,'qr_eigen_values.c']]], + ['merge_646',['merge',['../d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729',1,'merge_sort.c']]], + ['merge_5fsort_647',['merge_sort',['../d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43',1,'merge_sort.c']]], + ['midpoint_5feuler_648',['midpoint_euler',['../d1/dc2/ode__midpoint__euler_8c.html#a148003d8b261d040c1c41e73b40af1dd',1,'ode_midpoint_euler.c']]], + ['midpoint_5feuler_5fstep_649',['midpoint_euler_step',['../d1/dc2/ode__midpoint__euler_8c.html#affe6cc2ab040b94a29e6c41782f72d51',1,'ode_midpoint_euler.c']]], + ['minimum_650',['minimum',['../da/da0/segment__tree_8c.html#a93bfab032ce9dbc0c1feaeee32a885fb',1,'segment_tree.c']]], + ['modifiedbinarysearch_651',['modifiedBinarySearch',['../d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f',1,'modified_binary_search.c']]], + ['multiply_652',['multiply',['../d6/d3d/factorial__large__number_8c.html#ad398ddbd594ca69a5e6dfc894925341e',1,'factorial_large_number.c']]] ]; diff --git a/search/functions_e.js b/search/functions_e.js index 67090b25..f293b386 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['new_5fadaline_649',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]], - ['new_5fnumber_650',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]], - ['newnode_651',['newNode',['../da/d02/binary__search__tree_8c.html#ac73c73be92dbbeeaad942c0103b9540d',1,'binary_search_tree.c']]], - ['number_5fof_5fpaths_652',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]] + ['new_5fadaline_653',['new_adaline',['../da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b',1,'adaline_learning.c']]], + ['new_5fnumber_654',['new_number',['../d6/d3d/factorial__large__number_8c.html#ad8101f58545bd891ae8b6e11caadd7eb',1,'factorial_large_number.c']]], + ['newnode_655',['newNode',['../da/d02/binary__search__tree_8c.html#ac73c73be92dbbeeaad942c0103b9540d',1,'binary_search_tree.c']]], + ['number_5fof_5fpaths_656',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]] ]; diff --git a/search/functions_f.js b/search/functions_f.js index 8259bcac..5d75a146 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,9 +1,9 @@ var searchData= [ - ['octaltodecimal_653',['octalToDecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a86a4edb605c2a03d9175c59de679347d',1,'octal_to_hexadecimal.c']]], - ['octaltohexadecimal_654',['octalToHexadecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a042035b4ba7b92974f0edf6eb1b0cbe1',1,'octal_to_hexadecimal.c']]], - ['ok_655',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]], - ['okbox_656',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]], - ['okcol_657',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]], - ['okrow_658',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]] + ['octaltodecimal_657',['octalToDecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a86a4edb605c2a03d9175c59de679347d',1,'octal_to_hexadecimal.c']]], + ['octaltohexadecimal_658',['octalToHexadecimal',['../d0/d8a/octal__to__hexadecimal_8c.html#a042035b4ba7b92974f0edf6eb1b0cbe1',1,'octal_to_hexadecimal.c']]], + ['ok_659',['OK',['../d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f',1,'sudoku_solver.c']]], + ['okbox_660',['OKbox',['../d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1',1,'sudoku_solver.c']]], + ['okcol_661',['OKcol',['../d5/df4/group__sudoku.html#ga6503128d4f5ce0a0826f72f73f9e0b2a',1,'sudoku_solver.c']]], + ['okrow_662',['OKrow',['../d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55',1,'sudoku_solver.c']]] ]; diff --git a/search/groups_0.js b/search/groups_0.js index 3d84928f..5e1d5d15 100644 --- a/search/groups_0.js +++ b/search/groups_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['3d_20dual_2dquaternion_20operations_826',['3D Dual-Quaternion operations',['../d4/d69/group__dual__quats.html',1,'']]], - ['3d_20quaternion_20operations_827',['3D Quaternion operations',['../dc/d9a/group__quats.html',1,'']]], - ['3d_20vector_20operations_828',['3D Vector operations',['../de/d7b/group__vec__3d.html',1,'']]] + ['3d_20dual_2dquaternion_20operations_830',['3D Dual-Quaternion operations',['../d4/d69/group__dual__quats.html',1,'']]], + ['3d_20quaternion_20operations_831',['3D Quaternion operations',['../dc/d9a/group__quats.html',1,'']]], + ['3d_20vector_20operations_832',['3D Vector operations',['../de/d7b/group__vec__3d.html',1,'']]] ]; diff --git a/search/groups_1.js b/search/groups_1.js index 873ed7cd..cf516c9e 100644 --- a/search/groups_1.js +++ b/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['adaline_20learning_20algorithm_829',['Adaline learning algorithm',['../da/d2a/group__adaline.html',1,'']]] + ['adaline_20learning_20algorithm_833',['Adaline learning algorithm',['../da/d2a/group__adaline.html',1,'']]] ]; diff --git a/search/groups_2.js b/search/groups_2.js index 9f245b52..f0e0566b 100644 --- a/search/groups_2.js +++ b/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['hash_20algorithms_830',['Hash algorithms',['../d7/d3b/group__hash.html',1,'']]] + ['hash_20algorithms_834',['Hash algorithms',['../d7/d3b/group__hash.html',1,'']]] ]; diff --git a/search/groups_3.js b/search/groups_3.js index 5893c15f..f0dfc620 100644 --- a/search/groups_3.js +++ b/search/groups_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['k_2dmeans_20clustering_20algorithm_831',['K-Means Clustering Algorithm',['../d8/d71/group__k__means.html',1,'']]], - ['kohonen_20som_20topology_20algorithm_832',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]], - ['kohonen_20som_20trace_2fchain_20algorithm_833',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]] + ['k_2dmeans_20clustering_20algorithm_835',['K-Means Clustering Algorithm',['../d8/d71/group__k__means.html',1,'']]], + ['kohonen_20som_20topology_20algorithm_836',['Kohonen SOM topology algorithm',['../d1/d6b/group__kohonen__2d.html',1,'']]], + ['kohonen_20som_20trace_2fchain_20algorithm_837',['Kohonen SOM trace/chain algorithm',['../d0/dcb/group__kohonen__1d.html',1,'']]] ]; diff --git a/search/groups_4.js b/search/groups_4.js index a8f076a3..7d1bcf8a 100644 --- a/search/groups_4.js +++ b/search/groups_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['library_20for_203d_20vectors_20_26_20quaternions_834',['Library for 3D Vectors & Quaternions',['../de/d5a/group__quaternions.html',1,'']]] + ['library_20for_203d_20vectors_20_26_20quaternions_838',['Library for 3D Vectors & Quaternions',['../de/d5a/group__quaternions.html',1,'']]] ]; diff --git a/search/groups_5.js b/search/groups_5.js index 77f3f69f..fd394ac4 100644 --- a/search/groups_5.js +++ b/search/groups_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['machine_20learning_20algorithms_835',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]], - ['matrix_20operations_836',['Matrix operations',['../dd/d7a/group__matrix.html',1,'']]], - ['misc_837',['Misc',['../d1/ded/group__misc.html',1,'']]] + ['machine_20learning_20algorithms_839',['Machine learning algorithms',['../d9/d66/group__machine__learning.html',1,'']]], + ['matrix_20operations_840',['Matrix operations',['../dd/d7a/group__matrix.html',1,'']]], + ['misc_841',['Misc',['../d1/ded/group__misc.html',1,'']]] ]; diff --git a/search/groups_6.js b/search/groups_6.js index 721c76fd..34a25755 100644 --- a/search/groups_6.js +++ b/search/groups_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['sorting_20algorithms_838',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]], - ['sudoku_20solver_839',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]] + ['sorting_20algorithms_842',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]], + ['sudoku_20solver_843',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]] ]; diff --git a/search/pages_0.js b/search/pages_0.js index 9053f726..849f92e9 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['array_840',['Array',['../d9/d41/md_data_structures_array__r_e_a_d_m_e.html',1,'']]] + ['array_844',['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 bde1bf2d..0c3f67d7 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['code_20style_20convention_841',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]], - ['contribution_20guidelines_842',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]], - ['contributor_20covenant_20code_20of_20conduct_843',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]] + ['code_20style_20convention_845',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]], + ['contribution_20guidelines_846',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]], + ['contributor_20covenant_20code_20of_20conduct_847',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]] ]; diff --git a/search/pages_2.js b/search/pages_2.js index fbb9555f..e48fb9f4 100644 --- a/search/pages_2.js +++ b/search/pages_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['dictionary_844',['Dictionary',['../de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html',1,'']]] + ['dictionary_848',['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 6e26245b..da0ef362 100644 --- a/search/pages_3.js +++ b/search/pages_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['guidelines_20for_20reviewers_20and_20maintainers_845',['Guidelines for reviewers and maintainers',['../dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html',1,'']]] + ['guidelines_20for_20reviewers_20and_20maintainers_849',['Guidelines for reviewers and maintainers',['../dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html',1,'']]] ]; diff --git a/search/pages_4.js b/search/pages_4.js index 835a8c23..b146fc90 100644 --- a/search/pages_4.js +++ b/search/pages_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['hash_20algorithms_846',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]] + ['hash_20algorithms_850',['Hash algorithms',['../d4/dcb/md_hash__r_e_a_d_m_e.html',1,'']]] ]; diff --git a/search/pages_5.js b/search/pages_5.js index ea0a2d3e..60f49ad7 100644 --- a/search/pages_5.js +++ b/search/pages_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['leetcode_847',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]], - ['list_20of_20all_20files_848',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]] + ['leetcode_851',['LeetCode',['../df/d58/md_leetcode__r_e_a_d_m_e.html',1,'']]], + ['list_20of_20all_20files_852',['List of all files',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]] ]; diff --git a/search/pages_6.js b/search/pages_6.js index dcd1faa0..0a49075a 100644 --- a/search/pages_6.js +++ b/search/pages_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['projecteuler_849',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]] + ['projecteuler_853',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]] ]; diff --git a/search/pages_7.js b/search/pages_7.js index 99f31796..c109e819 100644 --- a/search/pages_7.js +++ b/search/pages_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['sample_20solutions_20for_20_3ca_20href_3d_22http_3a_2f_2fexercism_2eio_2f_22_3eexercism_2eio_3c_2fa_3e_850',['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_851',['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_854',['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_855',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]] ]; diff --git a/search/pages_8.js b/search/pages_8.js index b8be35f4..9fdb0b12 100644 --- a/search/pages_8.js +++ b/search/pages_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['the_20algorithms_20_2d_20c_852',['The Algorithms - C',['../index.html',1,'']]] + ['the_20algorithms_20_2d_20c_856',['The Algorithms - C',['../index.html',1,'']]] ]; diff --git a/search/typedefs_0.js b/search/typedefs_0.js index d2210855..508537a8 100644 --- a/search/typedefs_0.js +++ b/search/typedefs_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['big_5fint_792',['big_int',['../db/d80/problem__20_2sol1_8c.html#a62cbbd106aad52daadb9403a07d0da32',1,'sol1.c']]] + ['big_5fint_796',['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 23d20125..bf013a12 100644 --- a/search/typedefs_1.js +++ b/search/typedefs_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['cantorset_793',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]], - ['combine_5ffunction_794',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]] + ['cantorset_797',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]], + ['combine_5ffunction_798',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]] ]; diff --git a/search/typedefs_2.js b/search/typedefs_2.js index 872c6506..46146c1c 100644 --- a/search/typedefs_2.js +++ b/search/typedefs_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['dual_5fquat_795',['dual_quat',['../d4/d69/group__dual__quats.html#ga27005601c47e5bb7aafe77659e76c88f',1,'geometry_datatypes.h']]] + ['dual_5fquat_799',['dual_quat',['../d4/d69/group__dual__quats.html#ga27005601c47e5bb7aafe77659e76c88f',1,'geometry_datatypes.h']]] ]; diff --git a/search/typedefs_3.js b/search/typedefs_3.js index 7e203fff..95f6ac60 100644 --- a/search/typedefs_3.js +++ b/search/typedefs_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['euler_796',['euler',['../dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd',1,'geometry_datatypes.h']]] + ['euler_800',['euler',['../dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd',1,'geometry_datatypes.h']]] ]; diff --git a/search/typedefs_4.js b/search/typedefs_4.js index 33f648b6..73ec3383 100644 --- a/search/typedefs_4.js +++ b/search/typedefs_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['large_5fnum_797',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]], - ['list_798',['List',['../dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7',1,'doubly_linked_list.c']]] + ['large_5fnum_801',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]], + ['list_802',['List',['../dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7',1,'doubly_linked_list.c']]] ]; diff --git a/search/typedefs_5.js b/search/typedefs_5.js index 700f415e..7debb2c5 100644 --- a/search/typedefs_5.js +++ b/search/typedefs_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['mat_5f3x3_799',['mat_3x3',['../dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7',1,'geometry_datatypes.h']]], - ['mem_5finfo_800',['mem_info',['../db/d84/malloc__dbg_8c.html#ab6619fb17769f2e4e2e36c9ef2dda3c6',1,'malloc_dbg.c']]] + ['mat_5f3x3_803',['mat_3x3',['../dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7',1,'geometry_datatypes.h']]], + ['mem_5finfo_804',['mem_info',['../db/d84/malloc__dbg_8c.html#ab6619fb17769f2e4e2e36c9ef2dda3c6',1,'malloc_dbg.c']]] ]; diff --git a/search/typedefs_6.js b/search/typedefs_6.js index fa5673ac..27325c7f 100644 --- a/search/typedefs_6.js +++ b/search/typedefs_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['node_801',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node(): binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]] + ['node_805',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node(): binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node(): threaded_binary_trees.c']]] ]; diff --git a/search/typedefs_7.js b/search/typedefs_7.js index d961326e..bd41481d 100644 --- a/search/typedefs_7.js +++ b/search/typedefs_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['quaternion_802',['quaternion',['../dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b',1,'geometry_datatypes.h']]] + ['quaternion_806',['quaternion',['../dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b',1,'geometry_datatypes.h']]] ]; diff --git a/search/typedefs_8.js b/search/typedefs_8.js index c961669c..a29a1dec 100644 --- a/search/typedefs_8.js +++ b/search/typedefs_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['segment_5ftree_803',['segment_tree',['../da/da0/segment__tree_8c.html#ac206721972f739510cb11f7c0a6a8f63',1,'segment_tree.c']]] + ['segment_5ftree_807',['segment_tree',['../da/da0/segment__tree_8c.html#ac206721972f739510cb11f7c0a6a8f63',1,'segment_tree.c']]] ]; diff --git a/search/typedefs_9.js b/search/typedefs_9.js index 62effc44..89a5378b 100644 --- a/search/typedefs_9.js +++ b/search/typedefs_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['vec_5f3d_804',['vec_3d',['../de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270',1,'geometry_datatypes.h']]] + ['vec_5f3d_808',['vec_3d',['../de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270',1,'geometry_datatypes.h']]] ]; diff --git a/search/variables_0.js b/search/variables_0.js index 50aac042..55513a16 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['a_732',['a',['../dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded',1,'sudoku']]], - ['abundant_5fflags_733',['abundant_flags',['../d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06',1,'sol2.c']]], - ['atexitcalled_734',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]] + ['a_736',['a',['../dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded',1,'sudoku']]], + ['abundant_5fflags_737',['abundant_flags',['../d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06',1,'sol2.c']]], + ['atexitcalled_738',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]] ]; diff --git a/search/variables_1.js b/search/variables_1.js index d15aa3e3..cb0e53e3 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bank_735',['bank',['../d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a',1,'euler_']]], - ['bytes_736',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]] + ['bank_739',['bank',['../d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a',1,'euler_']]], + ['bytes_740',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index 5782b009..0b70a44a 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['tos_784',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]] + ['tos_788',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index f16e95df..9c97ec74 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['value_785',['value',['../d8/d10/structlist.html#a5363bdc0495ab9ef0ed587c99b9a2b41',1,'list::value()'],['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int::value()']]] + ['value_789',['value',['../d8/d10/structlist.html#a5363bdc0495ab9ef0ed587c99b9a2b41',1,'list::value()'],['../dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008',1,'_big_int::value()']]] ]; diff --git a/search/variables_12.js b/search/variables_12.js index a8a4f9a8..73236a9f 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['w_786',['w',['../de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f',1,'quaternion_']]], - ['weights_787',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]] + ['w_790',['w',['../de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f',1,'quaternion_']]], + ['weights_791',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]] ]; diff --git a/search/variables_13.js b/search/variables_13.js index 15fbbcf9..b55061a0 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,4 +1,4 @@ var searchData= [ - ['x_788',['x',['../d5/db4/structvec__3d__.html#a53462a5a195c9e16fb584f73fd66c3d0',1,'vec_3d_::x()'],['../d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade',1,'observation::x()'],['../d1/d99/structcluster.html#a13278ef636c1d9bd9ce8fad736f4c570',1,'cluster::x()']]] + ['x_792',['x',['../d5/db4/structvec__3d__.html#a53462a5a195c9e16fb584f73fd66c3d0',1,'vec_3d_::x()'],['../d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade',1,'observation::x()'],['../d1/d99/structcluster.html#a13278ef636c1d9bd9ce8fad736f4c570',1,'cluster::x()']]] ]; diff --git a/search/variables_14.js b/search/variables_14.js index fd4c1c1a..60e2911e 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,5 +1,5 @@ var searchData= [ - ['y_789',['y',['../d5/db4/structvec__3d__.html#a76098d39a382838df3b4b48c3443413b',1,'vec_3d_::y()'],['../d1/d5e/structobservation.html#ab6be1fa7024b2d5f3a30d6c6b70efdd7',1,'observation::y()'],['../d1/d99/structcluster.html#a10fa7010c12d0f03a422d68321495479',1,'cluster::y()']]], - ['yaw_790',['yaw',['../d2/de8/structeuler__.html#aad52507cc423ec49847471f6f15dd9d7',1,'euler_']]] + ['y_793',['y',['../d5/db4/structvec__3d__.html#a76098d39a382838df3b4b48c3443413b',1,'vec_3d_::y()'],['../d1/d5e/structobservation.html#ab6be1fa7024b2d5f3a30d6c6b70efdd7',1,'observation::y()'],['../d1/d99/structcluster.html#a10fa7010c12d0f03a422d68321495479',1,'cluster::y()']]], + ['yaw_794',['yaw',['../d2/de8/structeuler__.html#aad52507cc423ec49847471f6f15dd9d7',1,'euler_']]] ]; diff --git a/search/variables_15.js b/search/variables_15.js index 1e5865cc..3367c744 100644 --- a/search/variables_15.js +++ b/search/variables_15.js @@ -1,4 +1,4 @@ var searchData= [ - ['z_791',['z',['../d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6',1,'vec_3d_']]] + ['z_795',['z',['../d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6',1,'vec_3d_']]] ]; diff --git a/search/variables_2.js b/search/variables_2.js index 1dafeae6..1186f768 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['coef_737',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]], - ['combine_738',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]], - ['count_739',['count',['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster']]] + ['coef_741',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]], + ['combine_742',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]], + ['count_743',['count',['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index 8b523417..c0803bd0 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,10 +1,10 @@ var searchData= [ - ['data_740',['data',['../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2',1,'node::data()'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]], - ['digits_741',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]], - ['dim1_742',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]], - ['dim2_743',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]], - ['dim3_744',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]], - ['divisors_745',['divisors',['../d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6',1,'sol2.c']]], - ['dual_746',['dual',['../de/d58/structquaternion__.html#a596abbab688731119c1f23b26a7ac17a',1,'quaternion_::dual()'],['../d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d',1,'dual_quat_::dual()']]] + ['data_744',['data',['../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2',1,'node::data()'],['../db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605',1,'Node::data()'],['../d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59',1,'kohonen_array_3d::data()']]], + ['digits_745',['digits',['../d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9',1,'_large_num']]], + ['dim1_746',['dim1',['../d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377',1,'kohonen_array_3d']]], + ['dim2_747',['dim2',['../d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d',1,'kohonen_array_3d']]], + ['dim3_748',['dim3',['../d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf',1,'kohonen_array_3d']]], + ['divisors_749',['divisors',['../d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6',1,'sol2.c']]], + ['dual_750',['dual',['../de/d58/structquaternion__.html#a596abbab688731119c1f23b26a7ac17a',1,'quaternion_::dual()'],['../d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d',1,'dual_quat_::dual()']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index 573e71a1..838e0c58 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,7 +1,7 @@ var searchData= [ - ['elem_5fsize_747',['elem_size',['../dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853',1,'segment_tree']]], - ['elevation_748',['elevation',['../d2/de8/structeuler__.html#abbbf12f0a960faf783d219f9012cdce6',1,'euler_']]], - ['end_749',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]], - ['eta_750',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]] + ['elem_5fsize_751',['elem_size',['../dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853',1,'segment_tree']]], + ['elevation_752',['elevation',['../d2/de8/structeuler__.html#abbbf12f0a960faf783d219f9012cdce6',1,'euler_']]], + ['end_753',['end',['../d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def',1,'_cantor_set']]], + ['eta_754',['eta',['../d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2',1,'adaline']]] ]; diff --git a/search/variables_5.js b/search/variables_5.js index 6ca06319..edcee4bb 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['filename_751',['fileName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be',1,'MEMORY_INFORMATION']]], - ['functionname_752',['functionName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417',1,'MEMORY_INFORMATION']]] + ['filename_755',['fileName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be',1,'MEMORY_INFORMATION']]], + ['functionname_756',['functionName',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417',1,'MEMORY_INFORMATION']]] ]; diff --git a/search/variables_6.js b/search/variables_6.js index 5ff90a82..53100359 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['group_753',['group',['../d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab',1,'observation']]] + ['group_757',['group',['../d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab',1,'observation']]] ]; diff --git a/search/variables_7.js b/search/variables_7.js index 2a9fdd68..af6ef4d2 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['heading_754',['heading',['../d2/de8/structeuler__.html#a899572e1b6a43387128de3a402a0a5f8',1,'euler_']]] + ['heading_758',['heading',['../d2/de8/structeuler__.html#a899572e1b6a43387128de3a402a0a5f8',1,'euler_']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 4be0a889..6078cbe6 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['identity_755',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]] + ['identity_759',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index a91096c7..94ab149d 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,7 +1,7 @@ var searchData= [ - ['left_756',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node']]], - ['length_757',['length',['../dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e',1,'segment_tree']]], - ['line_758',['line',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99',1,'MEMORY_INFORMATION']]], - ['llink_759',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]] + ['left_760',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node']]], + ['length_761',['length',['../dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e',1,'segment_tree']]], + ['line_762',['line',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99',1,'MEMORY_INFORMATION']]], + ['llink_763',['llink',['../db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef',1,'Node']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index f3a7ceb6..cd19da9c 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['max_5fsize_760',['MAX_SIZE',['../db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7',1,'prime_seive.c']]], - ['memoryinformation_761',['memoryInformation',['../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3',1,'malloc_dbg.c']]] + ['max_5fsize_764',['MAX_SIZE',['../db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7',1,'prime_seive.c']]], + ['memoryinformation_765',['memoryInformation',['../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3',1,'malloc_dbg.c']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index 2f82a475..abe0b680 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,9 +1,9 @@ var searchData= [ - ['n_762',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]], - ['n2_763',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]], - ['next_764',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]], - ['next_5fdigit_765',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]], - ['num_5fdigits_766',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]], - ['num_5fweights_767',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]] + ['n_766',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]], + ['n2_767',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]], + ['next_768',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]], + ['next_5fdigit_769',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]], + ['num_5fdigits_770',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]], + ['num_5fweights_771',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index cc7a33ce..73518cec 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,9 +1,9 @@ var searchData= [ - ['pitch_768',['pitch',['../d2/de8/structeuler__.html#aa71f9aa6dfa32d8014b2d54ab8410e0b',1,'euler_']]], - ['pow_769',['pow',['../df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74',1,'term']]], - ['prev_770',['prev',['../d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25',1,'list']]], - ['prev_5fdigit_771',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]], - ['previous_772',['previous',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3',1,'MEMORY_INFORMATION']]], - ['ptr_773',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]] + ['pitch_772',['pitch',['../d2/de8/structeuler__.html#aa71f9aa6dfa32d8014b2d54ab8410e0b',1,'euler_']]], + ['pow_773',['pow',['../df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74',1,'term']]], + ['prev_774',['prev',['../d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25',1,'list']]], + ['prev_5fdigit_775',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]], + ['previous_776',['previous',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3',1,'MEMORY_INFORMATION']]], + ['ptr_777',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js index d041a139..5918de14 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['q0_774',['q0',['../de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2',1,'quaternion_']]] + ['q0_778',['q0',['../de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2',1,'quaternion_']]] ]; diff --git a/search/variables_e.js b/search/variables_e.js index 65303f2f..a866ee4c 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,11 +1,11 @@ var searchData= [ - ['real_775',['real',['../d7/dfd/structdual__quat__.html#ad663036ace6a586f90a2f89386f7731a',1,'dual_quat_']]], - ['right_776',['right',['../d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c',1,'node']]], - ['rlink_777',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]], - ['roll_778',['roll',['../d2/de8/structeuler__.html#a3f1b77e489be443a8d84a84082b8092e',1,'euler_']]], - ['root_779',['root',['../dd/d06/structsegment__tree.html#aa18d7cb422873a807707b26448dce7cd',1,'segment_tree']]], - ['row1_780',['row1',['../d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e',1,'mat_3x3_']]], - ['row2_781',['row2',['../d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf',1,'mat_3x3_']]], - ['row3_782',['row3',['../d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563',1,'mat_3x3_']]] + ['real_779',['real',['../d7/dfd/structdual__quat__.html#ad663036ace6a586f90a2f89386f7731a',1,'dual_quat_']]], + ['right_780',['right',['../d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c',1,'node']]], + ['rlink_781',['rlink',['../db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7',1,'Node']]], + ['roll_782',['roll',['../d2/de8/structeuler__.html#a3f1b77e489be443a8d84a84082b8092e',1,'euler_']]], + ['root_783',['root',['../dd/d06/structsegment__tree.html#aa18d7cb422873a807707b26448dce7cd',1,'segment_tree']]], + ['row1_784',['row1',['../d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e',1,'mat_3x3_']]], + ['row2_785',['row2',['../d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf',1,'mat_3x3_']]], + ['row3_786',['row3',['../d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563',1,'mat_3x3_']]] ]; diff --git a/search/variables_f.js b/search/variables_f.js index c741e71d..ceab513a 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['start_783',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]] + ['start_787',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]] ];