diff --git a/d1/d12/md_data_structures_stack__r_e_a_d_m_e.html b/d1/d12/md_data_structures_stack__r_e_a_d_m_e.html index b650079f..205322c8 100644 --- a/d1/d12/md_data_structures_stack__r_e_a_d_m_e.html +++ b/d1/d12/md_data_structures_stack__r_e_a_d_m_e.html @@ -95,7 +95,7 @@ $(document).ready(function(){initNavTree('d1/d12/md_data_structures_stack__r_e_a

This is a modular generic stack data-structure. The stack is self growing.

-

+

Content

You need to only import the stack.h

-

+

Public interface

void initStack();

Initializes the stack with a capacity of 10 elements.

diff --git a/d5/d88/md__d_i_r_e_c_t_o_r_y.html b/d5/d88/md__d_i_r_e_c_t_o_r_y.html index bcc5d6d5..72254364 100644 --- a/d5/d88/md__d_i_r_e_c_t_o_r_y.html +++ b/d5/d88/md__d_i_r_e_c_t_o_r_y.html @@ -94,7 +94,7 @@ $(document).ready(function(){initNavTree('d5/d88/md__d_i_r_e_c_t_o_r_y.html','..
List of all files
-

+

Client Server

  • Client
  • @@ -102,7 +102,7 @@ Client Server

  • Udp Client
  • Udp Server
  • -

    +

    Conversions

    -

    +

    Data Structures

    -

    +

    Exercism

    -

    +

    Games

    -

    +

    Geometry

    -

    +

    Graphics

    -

    +

    Greedy Approach

    -

    +

    Hash

    -

    +

    Leetcode

    -

    +

    Machine Learning

    -

    +

    Misc

    -

    +

    Numerical Methods

    -

    +

    Project Euler

    -

    +

    Searching

    -

    +

    Sorting

    This directory contains some sample solutions for exercism.io

    -

    +

    Overview

    In this directory you will find (in the right order):

    • hello-world
    • diff --git a/d9/d41/md_data_structures_array__r_e_a_d_m_e.html b/d9/d41/md_data_structures_array__r_e_a_d_m_e.html index 4734feb3..05be72a3 100644 --- a/d9/d41/md_data_structures_array__r_e_a_d_m_e.html +++ b/d9/d41/md_data_structures_array__r_e_a_d_m_e.html @@ -95,15 +95,16 @@ $(document).ready(function(){initNavTree('d9/d41/md_data_structures_array__r_e_a

    Simple array of integers. With I/O functions, Sort Functions and Search Functions.

    -

    #Sort Function

    -

    The Sort function sorts the elements in the range in a particular order. The different types of sorting methods are Bubble Sort, Selection Sort, Merge Sort and Quick Sort. Bubble Sort repeatedly sorts the adjacent elements if they are in wrong order.

    +Sort Function

    +

    The Sort function sorts the elements in the range in a particular order. The different types of sorting methods are Bubble Sort, Selection Sort, Merge Sort and Quick Sort. Bubble Sort repeatedly sorts the adjacent elements if they are in wrong order.

    +

    Structure

    typedef struct CArray {
    int *array;
    int size;
    } CArray;
    -

    +

    Files

    • CArray.c - Array Implementations
    • diff --git a/de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html b/de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html index afa3f80f..95039872 100644 --- a/de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html +++ b/de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html @@ -97,7 +97,7 @@ $(document).ready(function(){initNavTree('de/d20/md_data_structures_dictionary__

      This is simple and generic dictionary. You can instantiate multiple dictionaries with the constructor. See interface below.

      Each dictionary has space for 1000 elements.

      You need add the files dic.c and dic.h in your project directory. After that you include dic.h

      -

      +

      Overview about functions

      Dictionary * create_dict(void);

      create_dict: is a simple constructor for creating a dictionary and setting up the member field 'number_of_elements' and prepares the inner array 'elements'

      diff --git a/de/d5a/group__quaternions.js b/de/d5a/group__quaternions.js index 68e49e56..6fd00982 100644 --- a/de/d5a/group__quaternions.js +++ b/de/d5a/group__quaternions.js @@ -1,10 +1,10 @@ var group__quaternions = [ - [ "Overview about functions", "de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md34", null ], - [ "Content", "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md36", null ], - [ "Public interface", "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md37", null ], - [ "Overview", "d7/db5/md_exercism__r_e_a_d_m_e.html#autotoc_md56", null ], - [ "LeetCode Algorithm", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md58", null ], + [ "Overview about functions", "de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md35", null ], + [ "Content", "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md37", null ], + [ "Public interface", "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md38", null ], + [ "Overview", "d7/db5/md_exercism__r_e_a_d_m_e.html#autotoc_md57", null ], + [ "LeetCode Algorithm", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md59", null ], [ "3D Vector operations", "de/d7b/group__vec__3d.html", "de/d7b/group__vec__3d" ], [ "Matrix operations", "dd/d7a/group__matrix.html", "dd/d7a/group__matrix" ], [ "3D Quaternion operations", "dc/d9a/group__quats.html", "dc/d9a/group__quats" ], diff --git a/df/d58/md_leetcode__r_e_a_d_m_e.html b/df/d58/md_leetcode__r_e_a_d_m_e.html index eb7c9bcc..305835bc 100644 --- a/df/d58/md_leetcode__r_e_a_d_m_e.html +++ b/df/d58/md_leetcode__r_e_a_d_m_e.html @@ -94,7 +94,7 @@ $(document).ready(function(){initNavTree('df/d58/md_leetcode__r_e_a_d_m_e.html',
      LeetCode
    -

    +

    LeetCode Algorithm

    diff --git a/index.html b/index.html index b6708566..e9fb60a2 100644 --- a/index.html +++ b/index.html @@ -96,10 +96,10 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });

    Gitpod Ready-to-Code Language grade: C/C++ Gitter chat contributions welcome GitHub repo size Doxygen CI Awesome CI

    -

    +

    Overview

    The repository is a collection of open-source implementation of a variety of algorithms implemented in C and licensed under GPLv3 License. The algorithms span a variety of topics from computer science, mathematics and statistics, data science, machine learning, engineering, etc.. The implementations and the associated documentation are meant to provide a learning resource for educators and students. Hence, one may find more than one implementation for the same objective but using a different algorithm strategies and optimizations.

    -

    +

    Features

    • The repository provides implementations of various algorithms in one of the most fundamental general purpose languages - C.
    • @@ -110,12 +110,12 @@ Features
    • Self-checks within programs ensure correct implementations with confidence.
    • Modular implementations and OpenSource licensing enable the functions to be utilized conveniently in other applications.
    -

    +

    Documentation

    Online Documentation is generated from the repository source codes directly. The documentation contains all resources including source code snippets, details on execution of the programs, diagrammatic representation of program flow, and links to external resources where necessary. Click on Files menu to see the list of all the files documented with the code.

    Documentation of Algorithms in C by The Algorithms Contributors is licensed under CC BY-SA 4.0
    Creative Commons LicenseCredit must be given to the creatorAdaptations must be shared under the same terms

    -

    +

    Contributions

    As a community developed and maintained repository, we welcome new un-plagiarized quality contributions. Please read our Contribution Guidelines.

    diff --git a/navtreedata.js b/navtreedata.js index 699fe381..45132276 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -26,10 +26,10 @@ var NAVTREE = [ [ "Algorithms_in_C", "index.html", [ [ "The Algorithms - C", "index.html", [ - [ "Overview", "index.html#autotoc_md60", null ], - [ "Features", "index.html#autotoc_md61", null ], - [ "Documentation", "index.html#autotoc_md62", null ], - [ "Contributions", "index.html#autotoc_md63", null ] + [ "Overview", "index.html#autotoc_md61", null ], + [ "Features", "index.html#autotoc_md62", null ], + [ "Documentation", "index.html#autotoc_md63", null ], + [ "Contributions", "index.html#autotoc_md64", null ] ] ], [ "Contributor Covenant Code of Conduct", "d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html", [ [ "Our Pledge", "d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html#autotoc_md1", null ], @@ -66,28 +66,29 @@ var NAVTREE = ] ] ] ], [ "Array", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html", [ - [ "Structure", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md31", null ], - [ "Files", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md32", null ] + [ "Sort Function", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md31", null ], + [ "Structure", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md32", null ], + [ "Files", "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md33", null ] ] ], [ "Dictionary", "de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html", null ], [ "Simple generic Stack", "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html", null ], [ "List of all files", "d5/d88/md__d_i_r_e_c_t_o_r_y.html", [ - [ "Client Server", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md39", null ], - [ "Conversions", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md40", null ], - [ "Data Structures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md41", null ], - [ "Exercism", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md42", null ], - [ "Games", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md43", null ], - [ "Geometry", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md44", null ], - [ "Graphics", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md45", null ], - [ "Greedy Approach", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md46", null ], - [ "Hash", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md47", null ], - [ "Leetcode", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md48", null ], - [ "Machine Learning", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49", null ], - [ "Misc", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md50", null ], - [ "Numerical Methods", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md51", null ], - [ "Project Euler", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md52", null ], - [ "Searching", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md53", null ], - [ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md54", null ] + [ "Client Server", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md40", null ], + [ "Conversions", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md41", null ], + [ "Data Structures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md42", null ], + [ "Exercism", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md43", null ], + [ "Games", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md44", null ], + [ "Geometry", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md45", null ], + [ "Graphics", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md46", null ], + [ "Greedy Approach", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md47", null ], + [ "Hash", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md48", null ], + [ "Leetcode", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49", null ], + [ "Machine Learning", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md50", null ], + [ "Misc", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md51", null ], + [ "Numerical Methods", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md52", null ], + [ "Project Euler", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md53", null ], + [ "Searching", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md54", null ], + [ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md55", null ] ] ], [ "Sample solutions for exercism.io", "d7/db5/md_exercism__r_e_a_d_m_e.html", null ], [ "Hash algorithms", "d4/dcb/md_hash__r_e_a_d_m_e.html", null ], @@ -121,7 +122,7 @@ var NAVTREEINDEX = "annotated.html", "d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06", "d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", -"dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75" +"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 2e6ec1cb..197bf32c 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -77,8 +77,8 @@ var NAVTREEINDEX0 = "d0/df1/structhash__set__t.html#a66e37043817e37030d2e49fd5bf81d7f":[14,0,17,3], "d0/df1/structhash__set__t.html#a6f21e4fb262dbabac311dadc7936aa68":[14,0,17,0], "d1/d12/md_data_structures_stack__r_e_a_d_m_e.html":[6], -"d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md36":[1], -"d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md37":[2], +"d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md37":[1], +"d1/d12/md_data_structures_stack__r_e_a_d_m_e.html#autotoc_md38":[2], "d1/d20/server_8c.html":[15,0,0,1], "d1/d20/server_8c.html#a1e43924adac4ae865aa0acf79710261c":[15,0,0,1,2], "d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326":[15,0,0,1,0], diff --git a/navtreeindex1.js b/navtreeindex1.js index a336b837..73c9b8b1 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -42,18 +42,18 @@ var NAVTREEINDEX1 = "d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[13,5,8], "d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,12,5,3], "d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[15,0,12,7,3], -"d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[13,5,0], "d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[15,0,12,0,0], +"d5/d4c/group__sorting.html#ga4fdb8af29a07ac8f496e49a11bf9f1bd":[13,5,0], "d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[13,5,6], "d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0":[15,0,12,7,1], -"d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[13,5,3], "d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[15,0,12,5,1], +"d5/d4c/group__sorting.html#ga8dc3ec66cb3350313fdb34bfd1674729":[13,5,3], "d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359":[13,5,5], "d5/d4c/group__sorting.html#ga98666b73777e308fb06a3c489ce25359":[15,0,12,4,1], -"d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[15,0,12,5,2], "d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[13,5,4], -"d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971":[15,0,12,0,2], +"d5/d4c/group__sorting.html#gab99b8a397bdd0bf2903d66c22ba4ba43":[15,0,12,5,2], "d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971":[13,5,2], +"d5/d4c/group__sorting.html#gad7ed8cc4603f500d610054680d28b971":[15,0,12,0,2], "d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[13,5,7], "d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[15,0,12,7,2], "d5/d7c/problem__5_2sol3_8c.html":[15,0,10,18,2], @@ -64,22 +64,22 @@ var NAVTREEINDEX1 = "d5/d7e/struct_t.html#a2023d2bb6a6cdf472b567b3ec5cf35d4":[14,0,35,0], "d5/d7e/struct_t.html#a5a06d4022d41bad87137ba3430abce8b":[14,0,35,1], "d5/d88/md__d_i_r_e_c_t_o_r_y.html":[7], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md39":[7,0], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md40":[7,1], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md41":[7,2], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md42":[7,3], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md43":[7,4], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md44":[7,5], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md45":[7,6], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md46":[7,7], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md47":[7,8], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md48":[7,9], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49":[7,10], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md50":[7,11], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md51":[7,12], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md52":[7,13], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md53":[7,14], -"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md54":[7,15], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md40":[7,0], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md41":[7,1], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md42":[7,2], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md43":[7,3], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md44":[7,4], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md45":[7,5], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md46":[7,6], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md47":[7,7], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md48":[7,8], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49":[7,9], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md50":[7,10], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md51":[7,11], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md52":[7,12], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md53":[7,13], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md54":[7,14], +"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md55":[7,15], "d5/da1/structnode.html":[14,0,25], "d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063":[14,0,25,7], "d5/da1/structnode.html#a1aa632fdf50713d86192a96f8191851b":[14,0,25,6], @@ -122,8 +122,8 @@ var NAVTREEINDEX1 = "d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1":[13,4,6], "d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[15,0,8,10,5], "d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[13,4,5], -"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[15,0,8,10,7], "d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[13,4,7], +"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[15,0,8,10,7], "d6/d1b/sol4_8c.html":[15,0,10,0,3], "d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,10,0,3,0], "d6/d2e/cartesian__to__polar_8c.html":[15,0,8,1], @@ -186,8 +186,8 @@ var NAVTREEINDEX1 = "d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,10,2,0,1], "d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222":[15,0,10,2,0,0], "d7/d3b/group__hash.html":[13,1], -"d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b":[13,1,7], "d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b":[15,0,6,2,0], +"d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b":[13,1,7], "d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0":[13,1,13], "d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0":[15,0,6,4,1], "d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567":[13,1,6], @@ -200,8 +200,8 @@ var NAVTREEINDEX1 = "d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd":[15,0,6,0,2], "d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5":[15,0,6,2,2], "d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5":[13,1,11], -"d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453":[15,0,6,3,2], "d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453":[13,1,12], +"d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453":[15,0,6,3,2], "d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2":[13,1,10], "d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2":[15,0,6,1,2], "d7/d3b/group__hash.html#gae4836b42b998b336298f3b19dcc9cdeb":[13,1,14], @@ -225,7 +225,7 @@ var NAVTREEINDEX1 = "d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e":[15,0,5,0,0], "d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f":[15,0,5,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_md56":[3], +"d7/db5/md_exercism__r_e_a_d_m_e.html#autotoc_md57":[3], "d7/dd3/problem__3_2sol1_8c.html":[15,0,10,15,0], "d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305":[15,0,10,15,0,0], "d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,10,15,0,1], diff --git a/navtreeindex2.js b/navtreeindex2.js index d886038c..61414b63 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -15,8 +15,8 @@ var NAVTREEINDEX2 = "d8/d71/group__k__means.html#gad229b1dc406cb5ea510f26a373ed8bfd":[13,2,1,4], "d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9":[15,0,7,1,4], "d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9":[13,2,1,3], -"d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7":[15,0,7,1,3], "d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7":[13,2,1,2], +"d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7":[15,0,7,1,3], "d8/d7a/structtnode.html":[14,0,37], "d8/d7a/structtnode.html#a44127c1d017332403d91a96a1633a76a":[14,0,37,3], "d8/d7a/structtnode.html#ad302cb43ee1cab8a29581e8aaf76bbd4":[14,0,37,0], @@ -39,6 +39,7 @@ var NAVTREEINDEX2 = "d9/d41/md_data_structures_array__r_e_a_d_m_e.html":[4], "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md31":[4,0], "d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md32":[4,1], +"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md33":[4,2], "d9/d66/group__machine__learning.html":[13,2], "d9/d8b/structmat__3x3__.html":[13,0,6,0], "d9/d8b/structmat__3x3__.html#a083420b13a87ebece08b6c7d49081e8a":[13,0,6,0,3], @@ -78,10 +79,10 @@ var NAVTREEINDEX2 = "da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f":[15,0,7,0,1], "da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665":[15,0,7,0,7], "da/d2a/group__adaline.html#ga6f35caa3084772cc126ac7b20f67f665":[13,2,0,8], -"da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[13,2,0,4], "da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[15,0,7,0,3], -"da/d2a/group__adaline.html#gab4d49d73dec94c092b7ffadba55fb020":[13,2,0,1], +"da/d2a/group__adaline.html#gaa52120912e32d2893fe1c6d78da5befd":[13,2,0,4], "da/d2a/group__adaline.html#gab4d49d73dec94c092b7ffadba55fb020":[15,0,7,0,0], +"da/d2a/group__adaline.html#gab4d49d73dec94c092b7ffadba55fb020":[13,2,0,1], "da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94":[15,0,7,0,6], "da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94":[13,2,0,7], "da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b":[15,0,7,0,9], @@ -186,8 +187,8 @@ var NAVTREEINDEX2 = "dc/d9a/group__quats.html#ga8cc5e5b7a5fa492423ecf034c8bb52bd":[15,0,4,0,2], "dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b":[13,0,7,3], "dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b":[15,0,4,0,4], -"dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1":[13,0,7,6], "dc/d9a/group__quats.html#gaf5ad0f9c4f0facc5a9c3735a178156b1":[15,0,4,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,33], @@ -221,8 +222,8 @@ var NAVTREEINDEX2 = "dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,1,3,2], "dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,1,3,1], "dd/d7a/group__matrix.html":[13,0,6], -"dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7":[13,0,6,1], "dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7":[15,0,4,0,3], +"dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7":[13,0,6,1], "dd/d8b/problem__22_2sol1_8c.html":[15,0,10,11,0], "dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,10,11,0,3], "dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63":[15,0,10,11,0,4], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971":[15,0,12,1,1], "dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002":[15,0,12,1,4], "dd/df0/problem__19_2sol1_8c.html":[15,0,10,7,0], -"dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,10,7,0,2], -"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[15,0,10,7,0,1] +"dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[15,0,10,7,0,2] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index a1c41706..b0c5af33 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,11 +1,12 @@ var NAVTREEINDEX3 = { +"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[15,0,10,7,0,1], "dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75":[15,0,10,7,0,0], "de/d0c/insertion__sort__recursive_8c.html":[15,0,12,4], "de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,12,4,2], "de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,12,4,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_md34":[0], +"de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html#autotoc_md35":[0], "de/d58/structquaternion__.html":[13,0,7,0], "de/d58/structquaternion__.html#a2ce1409f1d683aa40eade31d60ded530":[13,0,7,0,4], "de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2":[13,0,7,0,1], @@ -17,24 +18,24 @@ var NAVTREEINDEX3 = "de/d5a/group__quaternions.html#ga002b2f4894492820fe708b1b7e7c5e70":[13,0,10], "de/d5a/group__quaternions.html#ga002b2f4894492820fe708b1b7e7c5e70":[15,0,4,0,0], "de/d7b/group__vec__3d.html":[13,0,5], -"de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84":[13,0,5,2], "de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84":[15,0,4,2,0], -"de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e":[15,0,4,2,5], +"de/d7b/group__vec__3d.html#ga243e74d542d0d4d14fa3ae0bc2170d84":[13,0,5,2], "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#ga3cdfd8378a0b115563ea6c561bb46b7e":[15,0,4,2,5], "de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e":[15,0,4,2,3], -"de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849":[15,0,4,2,1], +"de/d7b/group__vec__3d.html#ga4fd194972bea4884e0b33cf4a166d14e":[13,0,5,4], "de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849":[13,0,5,3], +"de/d7b/group__vec__3d.html#ga5082b0720c2cc51ae84bf19bd76dc849":[15,0,4,2,1], "de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de":[15,0,4,2,7], "de/d7b/group__vec__3d.html#ga94805165d037d111d7d7c0df99e3a5de":[13,0,5,7], "de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc":[13,0,5,9], "de/d7b/group__vec__3d.html#ga97da356cb7d5da73a0ac9bad09a435cc":[15,0,4,2,9], "de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4":[13,0,5,6], "de/d7b/group__vec__3d.html#gaa6b5ac18429ffb0131dc8593d31c25a4":[15,0,4,2,6], -"de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5":[15,0,4,2,8], "de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5":[13,0,5,8], -"de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270":[15,0,4,0,5], +"de/d7b/group__vec__3d.html#gae4a49e6bdf13df949e8b23c7925bb5f5":[15,0,4,2,8], "de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270":[13,0,5,1], +"de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270":[15,0,4,0,5], "de/dac/sudoku__solver_8c.html":[15,0,8,10], "de/dac/sudoku__solver_8c.html#ae1a3968e7947464bee7714f6d43b7002":[15,0,8,10,8], "de/dac/sudoku__solver_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[15,0,8,10,1], @@ -64,7 +65,7 @@ var NAVTREEINDEX3 = "df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6":[15,0,2,1,2,1], "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_md58":[4], +"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md59":[4], "df/d83/selection__sort_8c.html":[15,0,12,6], "df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[15,0,12,6,3], "df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[15,0,12,6,0], @@ -148,8 +149,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], @@ -157,8 +158,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,0], "globals_func.html":[15,1,1], +"globals_func.html":[15,1,1,0], "globals_func_a.html":[15,1,1,1], "globals_func_b.html":[15,1,1,2], "globals_func_c.html":[15,1,1,3], @@ -203,10 +204,10 @@ var NAVTREEINDEX3 = "globals_x.html":[15,1,0,23], "index.html":[0], "index.html":[], -"index.html#autotoc_md60":[0,0], -"index.html#autotoc_md61":[0,1], -"index.html#autotoc_md62":[0,2], -"index.html#autotoc_md63":[0,3], +"index.html#autotoc_md61":[0,0], +"index.html#autotoc_md62":[0,1], +"index.html#autotoc_md63":[0,2], +"index.html#autotoc_md64":[0,3], "modules.html":[13], "pages.html":[] };