Implementation of Bogosort algorithm
In computer science, bogosort (also known as permutation sort, stupid sort, slowsort, shotgun sort, random sort, monkey sort, bobosort or shuffle sort) is a highly inefficient sorting algorithm based on the generate and test paradigm. Two versions of this algorithm exist: a deterministic version that enumerates all permutations until it hits a sorted one, and a randomized version that randomly permutes its input.Randomized version is implemented here.
-
+
Algorithm
Shuffle the array untill array is sorted.
- Author
- Deep Raval
diff --git a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
index 1c56c71b9..4c6694408 100644
--- a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
+++ b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
@@ -254,18 +254,26 @@ Pull Requests
Checkout our pull request template
-cpplint
-
To see if cpplint is already installed, do:
-cpplint --version # currently returns "cpplint 1.4.4" If cpplint is ___not___ installed then do:
-python3 -m pip install cpplint # If that does not work then try...
-py -m pip install cpplint # If that does not work then try...
-pip install cpplint Once cpplint is installed, test your file(s) with:
-cpplint --filter=-legal my_file.cpp my_other_file.cpp # Fix any issues and try again.
+Building Locally
+Before submitting a pull request, build the code locally or using the convenient
service.
+Static Code Analyzer
+We use clang-tidy as a static code analyzer with a configuration in .clang-tidy.
clang-tidy --fix --quiet -p build subfolder/file_to_check.cpp --
+
+Code Formatter
+clang-format is used for code forrmating.
+
+GitHub Actions
+Enable GitHub Actions on your fork of the repository. After enabling it will execute clang-tidy and clang-format after every a push (not a commit). The result can create another commit if the actions made any changes on your behalf. Hence, it is better to wait and check the results of GitHub Actions after every push. Run git pull in your local clone if these actions made many changes in order to avoid merge conflicts.
Most importantly,
diff --git a/index.html b/index.html
index 48612122b..7b0eef9b5 100644
--- a/index.html
+++ b/index.html
@@ -96,10 +96,10 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });

-
+
Overview
The repository is a collection of open-source implementation of a variety of algorithms implemented in C++ and licensed under MIT 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. The documentation also introduces interactive source code with links to documentation for C++ STL library functions used. 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



-
+
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 d72f847da..186117e05 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_md40", null ],
- [ "Features", "index.html#autotoc_md41", null ],
- [ "Documentation", "index.html#autotoc_md42", null ],
- [ "Contributions", "index.html#autotoc_md43", null ]
+ [ "Overview", "index.html#autotoc_md43", null ],
+ [ "Features", "index.html#autotoc_md44", null ],
+ [ "Documentation", "index.html#autotoc_md45", null ],
+ [ "Contributions", "index.html#autotoc_md46", null ]
] ],
[ "CONTRIBUTION GUIDELINES", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html", [
[ "Before contributing", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md4", null ],
@@ -45,30 +45,33 @@ var NAVTREE =
[ "Commit Guidelines", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md14", null ]
] ],
[ "Pull Requests", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md15", [
- [ "cpplint", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md16", null ]
+ [ "Building Locally", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md16", null ],
+ [ "Static Code Analyzer", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md17", null ],
+ [ "Code Formatter", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md18", null ],
+ [ "GitHub Actions", "d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md19", null ]
] ]
] ]
] ],
[ "List of all files", "d5/d88/md__d_i_r_e_c_t_o_r_y.html", [
- [ "Backtracking", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md18", null ],
- [ "Ciphers", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md19", null ],
- [ "Data Structures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md20", null ],
- [ "Dynamic Programming", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md21", null ],
- [ "Geometry", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md22", null ],
- [ "Graph", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md23", null ],
- [ "Graphics", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md24", null ],
- [ "Greedy Algorithms", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md25", null ],
- [ "Hashing", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md26", null ],
- [ "Machine Learning", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md27", null ],
- [ "Math", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md28", null ],
- [ "Numerical Methods", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md29", null ],
- [ "Operations On Datastructures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md30", null ],
- [ "Others", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md31", null ],
- [ "Probability", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md32", null ],
- [ "Range Queries", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md33", null ],
- [ "Search", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md34", null ],
- [ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md35", null ],
- [ "Strings", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md36", null ]
+ [ "Backtracking", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md21", null ],
+ [ "Ciphers", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md22", null ],
+ [ "Data Structures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md23", null ],
+ [ "Dynamic Programming", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md24", null ],
+ [ "Geometry", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md25", null ],
+ [ "Graph", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md26", null ],
+ [ "Graphics", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md27", null ],
+ [ "Greedy Algorithms", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md28", null ],
+ [ "Hashing", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md29", null ],
+ [ "Machine Learning", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md30", null ],
+ [ "Math", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md31", null ],
+ [ "Numerical Methods", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md32", null ],
+ [ "Operations On Datastructures", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md33", null ],
+ [ "Others", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md34", null ],
+ [ "Probability", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md35", null ],
+ [ "Range Queries", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md36", null ],
+ [ "Search", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md37", null ],
+ [ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md38", null ],
+ [ "Strings", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md39", null ]
] ],
[ "Prime factorization", "d7/d7f/section.html", null ],
[ "Todo List", "dd/da0/todo.html", null ],
@@ -111,9 +114,9 @@ var NAVTREEINDEX =
"annotated.html",
"d3/d4c/quick__sort__3_8cpp.html#a07e5c62de28aeddea986890ce7ac1bda",
"d5/df6/check__amicable__pair_8cpp.html",
-"d8/d95/vector__ops_8hpp.html#a2055c2f3a076b3d4146aade5eb35666d",
-"da/df2/durand__kerner__roots_8cpp.html#a3c04138a5bfe5d72780bb7e82a18e627",
-"dd/d91/class_fenwick_tree.html#aaddab1f03d4941212a82cc647b1adb17"
+"d8/d95/vector__ops_8hpp.html",
+"da/df2/durand__kerner__roots_8cpp.html#a1440a7779ac56f47a3f355ce4a8c7da0",
+"dd/d91/class_fenwick_tree.html#a70f8c261393ca09ec1ad716ac806ead6"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 7d5782f32..428721119 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -178,13 +178,13 @@ var NAVTREEINDEX1 =
"d5/d4c/group__sorting.html#ga0a9a57a1f1bbba3d4822531d002b7e07":[8,0,15,6,3],
"d5/d4c/group__sorting.html#ga29d28b140174dbdde7c9f5157758435f":[8,0,15,4,1],
"d5/d4c/group__sorting.html#ga29d28b140174dbdde7c9f5157758435f":[5,3,1],
-"d5/d4c/group__sorting.html#ga460c61cd948203b4816bef2accb3fc73":[8,0,15,6,1],
"d5/d4c/group__sorting.html#ga460c61cd948203b4816bef2accb3fc73":[5,3,3],
-"d5/d4c/group__sorting.html#gab6b14fea48d9841e29b9fc26be6e05d7":[8,0,15,6,2],
+"d5/d4c/group__sorting.html#ga460c61cd948203b4816bef2accb3fc73":[8,0,15,6,1],
"d5/d4c/group__sorting.html#gab6b14fea48d9841e29b9fc26be6e05d7":[5,3,4],
+"d5/d4c/group__sorting.html#gab6b14fea48d9841e29b9fc26be6e05d7":[8,0,15,6,2],
"d5/d4c/group__sorting.html#gabd9a93f241c5c86f2ec0abf8b66b4145":[8,0,15,4,0],
-"d5/d4c/group__sorting.html#gae66f6b31b5ad750f1fe042a706a4e3d4":[8,0,15,6,0],
"d5/d4c/group__sorting.html#gae66f6b31b5ad750f1fe042a706a4e3d4":[5,3,2],
+"d5/d4c/group__sorting.html#gae66f6b31b5ad750f1fe042a706a4e3d4":[8,0,15,6,0],
"d5/d5f/namespacegeometry.html":[7,0,3],
"d5/d5f/namespacegeometry.html":[6,0,7],
"d5/d67/bayes__theorem_8cpp.html":[8,0,12,1],
@@ -198,25 +198,25 @@ var NAVTREEINDEX1 =
"d5/d67/complex__numbers_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[8,0,9,4,2],
"d5/d67/complex__numbers_8cpp.html#af738b2a6921f0a6868bb7c5b4c0d18e0":[8,0,9,4,3],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html":[2],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md18":[2,0],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md19":[2,1],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md20":[2,2],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md21":[2,3],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md22":[2,4],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md23":[2,5],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md24":[2,6],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md25":[2,7],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md26":[2,8],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md27":[2,9],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md28":[2,10],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md29":[2,11],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md30":[2,12],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md31":[2,13],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md32":[2,14],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md33":[2,15],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md34":[2,16],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md35":[2,17],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md36":[2,18],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md21":[2,0],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md22":[2,1],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md23":[2,2],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md24":[2,3],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md25":[2,4],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md26":[2,5],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md27":[2,6],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md28":[2,7],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md29":[2,8],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md30":[2,9],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md31":[2,10],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md32":[2,11],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md33":[2,12],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md34":[2,13],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md35":[2,14],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md36":[2,15],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md37":[2,16],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md38":[2,17],
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md39":[2,18],
"d5/d91/namespacesorting.html":[6,0,24],
"d5/da1/structnode.html":[7,0,27],
"d5/da1/structnode.html#a063635bc4e984d971d1efeb4230b0515":[7,0,27,5],
diff --git a/navtreeindex2.js b/navtreeindex2.js
index b484a4722..6eb45e346 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -118,6 +118,9 @@ var NAVTREEINDEX2 =
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md14":[1,1,1,6],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md15":[1,1,2],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md16":[1,1,2,0],
+"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md17":[1,1,2,1],
+"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md18":[1,1,2,2],
+"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md19":[1,1,2,3],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md4":[1,0],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md5":[1,1],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md6":[1,1,0],
@@ -246,8 +249,5 @@ var NAVTREEINDEX2 =
"d8/d8a/exponential__search_8cpp.html":[8,0,14,1],
"d8/d8a/exponential__search_8cpp.html#a0f697e2a3b5193324ab84bd4045088f7":[8,0,14,1,0],
"d8/d8a/exponential__search_8cpp.html#a67e9c84b4e2eb30e3c5170eabfbb363d":[8,0,14,1,2],
-"d8/d8a/exponential__search_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[8,0,14,1,1],
-"d8/d95/vector__ops_8hpp.html":[8,0,8,5],
-"d8/d95/vector__ops_8hpp.html#a05b9445c6ab65053b9bf9897a96af82d":[8,0,8,5,6],
-"d8/d95/vector__ops_8hpp.html#a1b42d24ad7bedbfa8e5b59fe96987a44":[8,0,8,5,1]
+"d8/d8a/exponential__search_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[8,0,14,1,1]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index bed51a4f4..9e9c127eb 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,5 +1,8 @@
var NAVTREEINDEX3 =
{
+"d8/d95/vector__ops_8hpp.html":[8,0,8,5],
+"d8/d95/vector__ops_8hpp.html#a05b9445c6ab65053b9bf9897a96af82d":[8,0,8,5,6],
+"d8/d95/vector__ops_8hpp.html#a1b42d24ad7bedbfa8e5b59fe96987a44":[8,0,8,5,1],
"d8/d95/vector__ops_8hpp.html#a2055c2f3a076b3d4146aade5eb35666d":[8,0,8,5,11],
"d8/d95/vector__ops_8hpp.html#a2a282c162e12f193c58232f26f0fa62d":[8,0,8,5,12],
"d8/d95/vector__ops_8hpp.html#a4d136cbf20e3126ed9b934ab2d03f18b":[8,0,8,5,21],
@@ -116,13 +119,13 @@ var NAVTREEINDEX3 =
"d9/d66/group__machine__learning.html#ga525335710b53cb064ca56b936120431e":[8,0,8,2,0],
"d9/d66/group__machine__learning.html#ga6c606bc85a3e9fd9d010f874ad760336":[5,1,6],
"d9/d66/group__machine__learning.html#ga6c606bc85a3e9fd9d010f874ad760336":[8,0,8,1,6],
-"d9/d66/group__machine__learning.html#ga72699c805c19a6cc47a937a6f3378afa":[5,1,7],
"d9/d66/group__machine__learning.html#ga72699c805c19a6cc47a937a6f3378afa":[8,0,8,2,5],
+"d9/d66/group__machine__learning.html#ga72699c805c19a6cc47a937a6f3378afa":[5,1,7],
"d9/d66/group__machine__learning.html#gab53c14440b2b2dd3172c66afc5c2f63f":[5,1,5],
"d9/d66/group__machine__learning.html#gab53c14440b2b2dd3172c66afc5c2f63f":[8,0,8,1,3],
"d9/d66/group__machine__learning.html#gaf5ce14f026d6d231bef29161bac2b485":[5,1,4],
-"d9/d66/group__machine__learning.html#gaf5ce14f026d6d231bef29161bac2b485":[8,0,8,1,1],
"d9/d66/group__machine__learning.html#gaf5ce14f026d6d231bef29161bac2b485":[8,0,8,2,1],
+"d9/d66/group__machine__learning.html#gaf5ce14f026d6d231bef29161bac2b485":[8,0,8,1,1],
"d9/d69/median__search_8cpp.html":[8,0,14,8],
"d9/d69/median__search_8cpp.html#a868847218f694e78bf433a0ff7648bae":[8,0,14,8,1],
"d9/d69/median__search_8cpp.html#ae1a3968e7947464bee7714f6d43b7002":[8,0,14,8,2],
@@ -205,9 +208,9 @@ var NAVTREEINDEX3 =
"da/d9a/class_graph.html#a6afcd41564ea00294a4c089414979ca1":[7,0,18,39],
"da/d9a/class_graph.html#a6cb6fbec4ea7cfdfda368f2c468a757d":[7,0,18,19],
"da/d9a/class_graph.html#a6d95f41d2df61697379ccc209c78f801":[7,0,18,24],
-"da/d9a/class_graph.html#a6dc4dd4ce49c4052ad2a5d27523881f4":[7,0,18,12],
-"da/d9a/class_graph.html#a6dc4dd4ce49c4052ad2a5d27523881f4":[7,0,18,13],
"da/d9a/class_graph.html#a6dc4dd4ce49c4052ad2a5d27523881f4":[7,0,18,14],
+"da/d9a/class_graph.html#a6dc4dd4ce49c4052ad2a5d27523881f4":[7,0,18,13],
+"da/d9a/class_graph.html#a6dc4dd4ce49c4052ad2a5d27523881f4":[7,0,18,12],
"da/d9a/class_graph.html#a73268574e2528b8e760191113ef6d1eb":[7,0,18,26],
"da/d9a/class_graph.html#a8a34b80e2f3749992e0e9b83de742fba":[7,0,18,25],
"da/d9a/class_graph.html#a8c95e00effaea0cd9404dd74cd802ae3":[7,0,18,8],
@@ -246,8 +249,5 @@ var NAVTREEINDEX3 =
"da/de7/decimal__to__hexadecimal_8cpp.html#a840291bc02cba5474a4cb46a9b9566fe":[8,0,11,2,0],
"da/df2/durand__kerner__roots_8cpp.html":[8,0,10,2],
"da/df2/durand__kerner__roots_8cpp.html#a024b8bc4755863315456d573a6732377":[8,0,10,2,2],
-"da/df2/durand__kerner__roots_8cpp.html#a0283886819c7c140a023582b7269e2d0":[8,0,10,2,8],
-"da/df2/durand__kerner__roots_8cpp.html#a1440a7779ac56f47a3f355ce4a8c7da0":[8,0,10,2,7],
-"da/df2/durand__kerner__roots_8cpp.html#a212979f5fc9dcf0a420e90b9b21d780a":[8,0,10,2,1],
-"da/df2/durand__kerner__roots_8cpp.html#a3bada3e58ad8d1b00918db2ffe83a740":[8,0,10,2,3]
+"da/df2/durand__kerner__roots_8cpp.html#a0283886819c7c140a023582b7269e2d0":[8,0,10,2,8]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 6ee06dac3..057e6ef52 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,8 @@
var NAVTREEINDEX4 =
{
+"da/df2/durand__kerner__roots_8cpp.html#a1440a7779ac56f47a3f355ce4a8c7da0":[8,0,10,2,7],
+"da/df2/durand__kerner__roots_8cpp.html#a212979f5fc9dcf0a420e90b9b21d780a":[8,0,10,2,1],
+"da/df2/durand__kerner__roots_8cpp.html#a3bada3e58ad8d1b00918db2ffe83a740":[8,0,10,2,3],
"da/df2/durand__kerner__roots_8cpp.html#a3c04138a5bfe5d72780bb7e82a18e627":[8,0,10,2,5],
"da/df2/durand__kerner__roots_8cpp.html#a51637ff89e55ca749993d3e84b95d153":[8,0,10,2,6],
"da/df2/durand__kerner__roots_8cpp.html#ac38b9cfd2a39d856e0feba3b5d241ded":[8,0,10,2,4],
@@ -246,8 +249,5 @@ var NAVTREEINDEX4 =
"dd/d91/class_fenwick_tree.html":[7,0,17],
"dd/d91/class_fenwick_tree.html#a115ff5c548b429b737ea09f75817d1f9":[7,0,17,4],
"dd/d91/class_fenwick_tree.html#a2e9ea4fcbe0786487f4535c1cfc7aa00":[7,0,17,5],
-"dd/d91/class_fenwick_tree.html#a4816596da965b5f0871d77b5a1985aa1":[7,0,17,7],
-"dd/d91/class_fenwick_tree.html#a70f8c261393ca09ec1ad716ac806ead6":[7,0,17,1],
-"dd/d91/class_fenwick_tree.html#aa8ecebf6f4ad9faaf4b826668d9409bb":[7,0,17,6],
-"dd/d91/class_fenwick_tree.html#aaae15ea71455315e257baa11017cec10":[7,0,17,2]
+"dd/d91/class_fenwick_tree.html#a4816596da965b5f0871d77b5a1985aa1":[7,0,17,7]
};
diff --git a/navtreeindex5.js b/navtreeindex5.js
index 4fce6f5a2..d8ccbe324 100644
--- a/navtreeindex5.js
+++ b/navtreeindex5.js
@@ -1,5 +1,8 @@
var NAVTREEINDEX5 =
{
+"dd/d91/class_fenwick_tree.html#a70f8c261393ca09ec1ad716ac806ead6":[7,0,17,1],
+"dd/d91/class_fenwick_tree.html#aa8ecebf6f4ad9faaf4b826668d9409bb":[7,0,17,6],
+"dd/d91/class_fenwick_tree.html#aaae15ea71455315e257baa11017cec10":[7,0,17,2],
"dd/d91/class_fenwick_tree.html#aaddab1f03d4941212a82cc647b1adb17":[7,0,17,0],
"dd/d91/class_fenwick_tree.html#ade1d6a3d49af9d9df33e2fb26cab1699":[7,0,17,3],
"dd/da0/todo.html":[4],
@@ -134,8 +137,8 @@ var NAVTREEINDEX5 =
"dir_ece9b94c107bbaa1dd68197a8c9983b9.html":[8,0,7],
"dir_f1797d0c2a0a12033e7d74efffeb14e1.html":[8,0,2,0],
"files.html":[8,0],
-"functions.html":[7,3,0,0],
"functions.html":[7,3,0],
+"functions.html":[7,3,0,0],
"functions_a.html":[7,3,0,1],
"functions_b.html":[7,3,0,2],
"functions_c.html":[7,3,0,3],
@@ -215,19 +218,19 @@ var NAVTREEINDEX5 =
"hierarchy.html":[7,2],
"index.html":[],
"index.html":[0],
-"index.html#autotoc_md40":[0,0],
-"index.html#autotoc_md41":[0,1],
-"index.html#autotoc_md42":[0,2],
-"index.html#autotoc_md43":[0,3],
+"index.html#autotoc_md43":[0,0],
+"index.html#autotoc_md44":[0,1],
+"index.html#autotoc_md45":[0,2],
+"index.html#autotoc_md46":[0,3],
"modules.html":[5],
"namespacemembers.html":[6,1,0],
"namespacemembers_func.html":[6,1,1],
"namespacemembers_vars.html":[6,1,2],
"namespaces.html":[6,0],
"pages.html":[],
-"":[7,0,6,0],
"":[7,0,3,0],
+"":[7,0,6,0],
"":[7,0,6,0,0],
-"":[7,0,8,0],
-"":[7,0,4,0]
+"":[7,0,4,0],
+"":[7,0,8,0]
};