diff --git a/d2/db0/namespacesieve__of__eratosthenes.html b/d2/db0/namespacesieve__of__eratosthenes.html
new file mode 100644
index 000000000..3a60528d0
--- /dev/null
+++ b/d2/db0/namespacesieve__of__eratosthenes.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+Algorithms_in_C++: sieve_of_eratosthenes Namespace Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Algorithms_in_C++ 1.0.0
+
+ Set of algorithms implemented in C++.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+
+
+
+
+
Functions for finding Prime Numbers using Sieve of Eratosthenes.
+More...
+
+
Functions for finding Prime Numbers using Sieve of Eratosthenes.
+
+
+
+
+
+
diff --git a/d4/d9c/primes__up__to__billion_8cpp.html b/d4/d9c/primes__up__to__billion_8cpp.html
index d49db76d2..4ff4ea67a 100644
--- a/d4/d9c/primes__up__to__billion_8cpp.html
+++ b/d4/d9c/primes__up__to__billion_8cpp.html
@@ -135,7 +135,7 @@ Variables
◆ main()
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp.html b/d8/ddf/sieve__of__eratosthenes_8cpp.html
index 1117fc860..061ecc611 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp.html
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp.html
@@ -105,12 +105,13 @@ $(function(){initNavTree('d8/ddf/sieve__of__eratosthenes_8cpp.html','../../'); i
-
Get list of prime numbers using Sieve of Eratosthenes.
+
Prime Numbers using Sieve of Eratosthenes
More...
#include <cassert>
#include <iostream>
@@ -121,19 +122,32 @@ Include dependency graph for sieve_of_eratosthenes.cpp:
+
+namespace math
+ for IO operations
+
+namespace sieve_of_eratosthenes
+ Functions for finding Prime Numbers using Sieve of Eratosthenes.
+
+
-Get list of prime numbers using Sieve of Eratosthenes.
+
Prime Numbers using Sieve of Eratosthenes
Sieve of Eratosthenes is an algorithm that finds all the primes between 2 and N.
Time Complexity : \(O(N \cdot\log \log N)\)
Space Complexity : \(O(N)\)
@@ -153,37 +167,30 @@ Space Complexity : \(O(N)\)
-
Main function
-
65 {
-
-
67
-
-
-
-
71 return 0;
-
72 }
-
constexpr uint32_t N
A struct to represent sparse table for min() as their invariant function, for the given array A....
Definition sparse_table.cpp:47
-
bool is_prime(int64_t num)
Function to check if the given number is prime or not.
Definition check_prime.cpp:31
-
void print(uint32_t N, const std::vector< bool > &is_prime)
Definition sieve_of_eratosthenes.cpp:44
-
std::vector< bool > sieve(uint32_t N)
Definition sieve_of_eratosthenes.cpp:26
-
void tests()
Definition sieve_of_eratosthenes.cpp:56
-
+
+
Main function.
+
Returns 0 on exit
+
119 {
+
+
121 return 0;
+
122 }
+
static void tests()
Self-test implementations.
Definition sieve_of_eratosthenes.cpp:80
-
-
◆ print()
+
+
◆ print()
- void print
+ void math::sieve_of_eratosthenes::print
(
uint32_t N ,
@@ -194,93 +201,142 @@ Here is the call graph for this function:
-
This function prints out the primes to STDOUT
Parameters
+
+Function to print the prime numbers.
+Parameters
- N number of primes to check
+ N number till which primes are to be found
is_prime a vector of N + 1 booleans identifying if i^th number is a prime or not
- 44 {
-
45 for (uint32_t i = 2; i <=
N ; i++) {
-
46 if (is_prime[i]) {
-
-
48 }
-
49 }
-
-
51 }
+
64 {
+
65 for (uint32_t i = 2; i <=
N ; i++) {
+
66 if (is_prime[i]) {
+
+
68 }
+
69 }
+
+
71 }
+
constexpr uint32_t N
A struct to represent sparse table for min() as their invariant function, for the given array A....
Definition sparse_table.cpp:47
-
-
◆ sieve()
+
+
◆ sieve()
-
This is the function that finds the primes and eliminates the multiples. Contains a common optimization to start eliminating multiples of a prime p starting from p * p since all of the lower multiples have been already eliminated.
Parameters
+
+Function to sieve out the primes.
+This function finds all the primes between 2 and N using the Sieve of Eratosthenes algorithm. It starts by assuming all numbers (except zero and one) are prime and then iteratively marks the multiples of each prime as non-prime.
+Contains a common optimization to start eliminating multiples of a prime p starting from p * p since all of the lower multiples have been already eliminated.
Parameters
- N number of primes to check
+ N number till which primes are to be found
Returns is_prime a vector of N + 1 booleans identifying if i^th number is a prime or not
- 26 {
-
-
-
29 for (uint32_t i = 2; i * i <=
N ; i++) {
-
30 if (is_prime[i]) {
-
31 for (uint32_t j = i * i; j <=
N ; j += i) {
-
-
33 }
-
34 }
-
35 }
-
-
37 }
-
+ 44 {
+
+
+
47
+
48 for (uint32_t i = 2; i * i <=
N ; i++) {
+
49 if (is_prime[i]) {
+
50 for (uint32_t j = i * i; j <=
N ; j += i) {
+
+
52 }
+
53 }
+
54 }
+
+
56 }
+
bool is_prime(int64_t num)
Function to check if the given number is prime or not.
Definition check_prime.cpp:31
+
+
+
+
-
-
◆ tests()
+
+
◆ tests()
+
+
+
- void tests
+ static void tests
(
)
+
+
+static
+
+
-
Test implementations
-
56 {
-
57
-
58 std::vector<bool> ans{
false ,
false ,
true ,
true ,
false ,
true ,
false ,
true ,
false ,
false ,
false };
-
59 assert(
sieve (10) == ans);
-
60 }
-
-
+
Self-test implementations.
+
Returns void
+
80 {
+
+
+
+
+
+
+
87
+
+
89 false , true , false , false , false };
+
90 assert(is_prime_1 == expected_1);
+
91
+
+
93 false , true , false , false , false , true ,
+
94 false , true , false , false , false , true ,
+
95 false , true , false };
+
96 assert(is_prime_2 == expected_2);
+
97
+
+
99 false , false , true , true , false , true , false , true , false , false ,
+
100 false , true , false , true , false , false , false , true , false , true ,
+
101 false , false , false , true , false , false , false , false , false , true ,
+
102 false , true , false , false , false , false , false , true , false , false ,
+
103 false , true , false , true , false , false , false , true , false , false ,
+
104 false , false , false , true , false , false , false , false , false , true ,
+
105 false , true , false , false , false , false , false , true , false , false ,
+
106 false , true , false , true , false , false , false , false , false , true ,
+
107 false , false , false , true , false , false , false , false , false , true ,
+
108 false , false , false , false , false , false , false , true , false , false ,
+
109 false };
+
110 assert(is_prime_3 == expected_3);
+
111
+
112 std::cout <<
"All tests have passed successfully!\n" ;
+
113 }
+
std::vector< bool > sieve(uint32_t N)
Function to sieve out the primes.
Definition sieve_of_eratosthenes.cpp:44
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp.js b/d8/ddf/sieve__of__eratosthenes_8cpp.js
index 2bb2cb4e7..ac94732a4 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp.js
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp.js
@@ -1,7 +1,7 @@
var sieve__of__eratosthenes_8cpp =
[
[ "main", "d8/ddf/sieve__of__eratosthenes_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ],
- [ "print", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a235843bdf82d2a6cc8596ae8fd3b8df9", null ],
- [ "sieve", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a7eebd5e7686a8db363f937b2f30d3818", null ],
- [ "tests", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9", null ]
+ [ "print", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a55bc4a221e584d33b79b322432ecc0f3", null ],
+ [ "sieve", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a22be949d160b26361f7e323310f7fa0c", null ],
+ [ "tests", "d8/ddf/sieve__of__eratosthenes_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e", null ]
];
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.map b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.map
new file mode 100644
index 000000000..dfff2987b
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.map
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.md5 b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.md5
new file mode 100644
index 000000000..65abae766
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.md5
@@ -0,0 +1 @@
+ad9cd93d2518e7fdf126525fd0eaca18
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.svg
new file mode 100644
index 000000000..060c3a5db
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph.svg
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+math::sieve_of_eratosthenes::sieve
+
+
+Node1
+
+
+math::sieve_of_eratosthenes
+::sieve
+
+
+
+
+
+Node2
+
+
+math::is_prime
+
+
+
+
+
+Node1->Node2
+
+
+
+
+
+
+
+
+Node3
+
+
+math::sieve
+
+
+
+
+
+Node1->Node3
+
+
+
+
+
+
+
+
+Node4
+
+
+std::vector::size
+
+
+
+
+
+Node3->Node4
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph_org.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph_org.svg
new file mode 100644
index 000000000..19d5b1527
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a22be949d160b26361f7e323310f7fa0c_cgraph_org.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+math::sieve_of_eratosthenes::sieve
+
+
+Node1
+
+
+math::sieve_of_eratosthenes
+::sieve
+
+
+
+
+
+Node2
+
+
+math::is_prime
+
+
+
+
+
+Node1->Node2
+
+
+
+
+
+
+
+
+Node3
+
+
+math::sieve
+
+
+
+
+
+Node1->Node3
+
+
+
+
+
+
+
+
+Node4
+
+
+std::vector::size
+
+
+
+
+
+Node3->Node4
+
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.map b/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.map
deleted file mode 100644
index a79e85f4b..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.map
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.md5 b/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.md5
deleted file mode 100644
index b8c4c957c..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.md5
+++ /dev/null
@@ -1 +0,0 @@
-3d9d00f1ba8824bdb16502791ed9d494
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.svg
deleted file mode 100644
index 3f0f9130c..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph.svg
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-print
-
-
-Node1
-
-
-print
-
-
-
-
-
-Node2
-
-
-std::endl
-
-
-
-
-
-Node1->Node2
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph_org.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph_org.svg
deleted file mode 100644
index a4007a765..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a235843bdf82d2a6cc8596ae8fd3b8df9_cgraph_org.svg
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-print
-
-
-Node1
-
-
-print
-
-
-
-
-
-Node2
-
-
-std::endl
-
-
-
-
-
-Node1->Node2
-
-
-
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.map b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.map
new file mode 100644
index 000000000..9bbc07f39
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.map
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.md5 b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.md5
new file mode 100644
index 000000000..90cbe167b
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.md5
@@ -0,0 +1 @@
+50e83aaf6f13e80f6ffb131b53f044e6
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.svg
new file mode 100644
index 000000000..9b9803082
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph.svg
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+math::sieve_of_eratosthenes::print
+
+
+Node1
+
+
+math::sieve_of_eratosthenes
+::print
+
+
+
+
+
+Node2
+
+
+std::endl
+
+
+
+
+
+Node1->Node2
+
+
+
+
+
+
+
+
+Node3
+
+
+math::is_prime
+
+
+
+
+
+Node1->Node3
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph_org.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph_org.svg
new file mode 100644
index 000000000..3ab529f5a
--- /dev/null
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_a55bc4a221e584d33b79b322432ecc0f3_cgraph_org.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+math::sieve_of_eratosthenes::print
+
+
+Node1
+
+
+math::sieve_of_eratosthenes
+::print
+
+
+
+
+
+Node2
+
+
+std::endl
+
+
+
+
+
+Node1->Node2
+
+
+
+
+
+
+
+
+Node3
+
+
+math::is_prime
+
+
+
+
+
+Node1->Node3
+
+
+
+
+
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.map b/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.map
deleted file mode 100644
index 51f028260..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.map
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.md5 b/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.md5
deleted file mode 100644
index 0674e85b3..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.md5
+++ /dev/null
@@ -1 +0,0 @@
-841812c674f8d1523d259f12d986fac2
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.svg
deleted file mode 100644
index bbb753fdd..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph.svg
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-tests
-
-
-Node1
-
-
-tests
-
-
-
-
-
-Node2
-
-
-sieve
-
-
-
-
-
-Node1->Node2
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph_org.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph_org.svg
deleted file mode 100644
index 9ce58b0b3..000000000
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_a88ec9ad42717780d6caaff9d3d6977f9_cgraph_org.svg
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-tests
-
-
-Node1
-
-
-tests
-
-
-
-
-
-Node2
-
-
-sieve
-
-
-
-
-
-Node1->Node2
-
-
-
-
-
-
-
-
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map
index 69ed76b36..19f717f6e 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map
@@ -1,12 +1,5 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5 b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5
index 7313899bf..c61ebd05f 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5
@@ -1 +1 @@
-28d240a537f2ca23120d67028f21597e
\ No newline at end of file
+c469d1fefdc7ac40ec9722e22511cdf2
\ No newline at end of file
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg
index bee57ab3a..90b341e16 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg
@@ -4,8 +4,8 @@
-
+
@@ -17,23 +17,23 @@
]]>
-
+
main
Node1
-
-
-main
+
+
+main
Node2
-
-
-print
+
+
+tests
@@ -41,71 +41,8 @@
Node1->Node2
-
-
-
-
-
-
-
-Node4
-
-
-sieve
-
-
-
-
-
-Node1->Node4
-
-
-
-
-
-
-
-
-Node5
-
-
-tests
-
-
-
-
-
-Node1->Node5
-
-
-
-
-
-
-
-
-Node3
-
-
-std::endl
-
-
-
-
-
-Node2->Node3
-
-
-
-
-
-
-
-
-Node5->Node4
-
-
-
+
+
diff --git a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph_org.svg b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph_org.svg
index 776cff0b5..86c4b950a 100644
--- a/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph_org.svg
+++ b/d8/ddf/sieve__of__eratosthenes_8cpp_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph_org.svg
@@ -4,25 +4,25 @@
-
-
+
+
main
Node1
-
-
-main
+
+
+main
Node2
-
-
-print
+
+
+tests
@@ -30,71 +30,8 @@
Node1->Node2
-
-
-
-
-
-
-
-Node4
-
-
-sieve
-
-
-
-
-
-Node1->Node4
-
-
-
-
-
-
-
-
-Node5
-
-
-tests
-
-
-
-
-
-Node1->Node5
-
-
-
-
-
-
-
-
-Node3
-
-
-std::endl
-
-
-
-
-
-Node2->Node3
-
-
-
-
-
-
-
-
-Node5->Node4
-
-
-
+
+
diff --git a/da/d35/sieve__of__eratosthenes_8cpp__incl.map b/da/d35/sieve__of__eratosthenes_8cpp__incl.map
index 15ea40650..43075086d 100644
--- a/da/d35/sieve__of__eratosthenes_8cpp__incl.map
+++ b/da/d35/sieve__of__eratosthenes_8cpp__incl.map
@@ -1,5 +1,5 @@
-
+
diff --git a/da/d35/sieve__of__eratosthenes_8cpp__incl.md5 b/da/d35/sieve__of__eratosthenes_8cpp__incl.md5
index 0b0b44a86..d654830ea 100644
--- a/da/d35/sieve__of__eratosthenes_8cpp__incl.md5
+++ b/da/d35/sieve__of__eratosthenes_8cpp__incl.md5
@@ -1 +1 @@
-280de3f2a6ae18976554cdba5c01172b
\ No newline at end of file
+c510a1dd2e2b310a22dcf1d80796b667
\ No newline at end of file
diff --git a/da/d35/sieve__of__eratosthenes_8cpp__incl.svg b/da/d35/sieve__of__eratosthenes_8cpp__incl.svg
index e1cea4003..92b7fb2cc 100644
--- a/da/d35/sieve__of__eratosthenes_8cpp__incl.svg
+++ b/da/d35/sieve__of__eratosthenes_8cpp__incl.svg
@@ -22,7 +22,7 @@
Node1
-
+
math/sieve_of_eratosthenes.cpp
diff --git a/da/d35/sieve__of__eratosthenes_8cpp__incl_org.svg b/da/d35/sieve__of__eratosthenes_8cpp__incl_org.svg
index acff0b524..6f1be5dd1 100644
--- a/da/d35/sieve__of__eratosthenes_8cpp__incl_org.svg
+++ b/da/d35/sieve__of__eratosthenes_8cpp__incl_org.svg
@@ -11,7 +11,7 @@
Node1
-
+
math/sieve_of_eratosthenes.cpp
diff --git a/dd/d47/namespacemath.html b/dd/d47/namespacemath.html
index 1ab7c4428..79d68133f 100644
--- a/dd/d47/namespacemath.html
+++ b/dd/d47/namespacemath.html
@@ -328,6 +328,8 @@ Algorithm
Mathematical algorithms
std::array assert std::sqrt , std::trunc , std::pow std::complex std::invalid_argument std::setprecision
Mathematical algorithms
+for assert for IO operations
+Mathematical algorithms
for assert for std::pow for std::uint32_t
Mathematical algorithms
diff --git a/de/d9b/prime__numbers_8cpp.html b/de/d9b/prime__numbers_8cpp.html
index 7c0110351..97dd247f1 100644
--- a/de/d9b/prime__numbers_8cpp.html
+++ b/de/d9b/prime__numbers_8cpp.html
@@ -129,7 +129,7 @@ Functions
◆ main()
diff --git a/dir_296d53ceaeaa7e099814a6def439fe8a.html b/dir_296d53ceaeaa7e099814a6def439fe8a.html
index 66d80ab3b..59bbc43b0 100644
--- a/dir_296d53ceaeaa7e099814a6def439fe8a.html
+++ b/dir_296d53ceaeaa7e099814a6def439fe8a.html
@@ -264,7 +264,7 @@ Files
Compute statistics for data entered in rreal-time.
sieve_of_eratosthenes.cpp
- Get list of prime numbers using Sieve of Eratosthenes.
+ Prime Numbers using Sieve of Eratosthenes
sqrt_double.cpp
Calculate the square root of any positive real number in \(O(\log
diff --git a/doxygen_crawl.html b/doxygen_crawl.html
index 924d100ef..51ea0c9bd 100644
--- a/doxygen_crawl.html
+++ b/doxygen_crawl.html
@@ -672,6 +672,7 @@
+
@@ -1412,6 +1413,7 @@
+
@@ -2677,9 +2679,9 @@
-
-
-
+
+
+
@@ -3114,6 +3116,8 @@
+
+
diff --git a/files.html b/files.html
index 2c443f3d1..08908134b 100644
--- a/files.html
+++ b/files.html
@@ -295,7 +295,7 @@ solve-a-rat-in-a-maze-c-java-pytho/" target="_blank">Rat in a Maze algorithm
primes_up_to_billion.cpp Compute prime numbers upto 1 billion
quadratic_equations_complex_numbers.cpp Calculate quadratic equation with complex roots, i.e. b^2 - 4ac < 0
realtime_stats.cpp Compute statistics for data entered in rreal-time
- sieve_of_eratosthenes.cpp Get list of prime numbers using Sieve of Eratosthenes
+ sieve_of_eratosthenes.cpp Prime Numbers using Sieve of Eratosthenes
sqrt_double.cpp Calculate the square root of any positive real number in \(O(\log
N)\) time, with precision fixed using bisection method of root-finding
string_fibonacci.cpp This Programme returns the Nth fibonacci as a string
diff --git a/globals_func_p.html b/globals_func_p.html
index da2b53290..f8d14859a 100644
--- a/globals_func_p.html
+++ b/globals_func_p.html
@@ -120,7 +120,6 @@ $(function(){initNavTree('globals_func_p.html',''); initResizable(true); });
predict_OLS_regressor() : ordinary_least_squares_regressor.cpp
prime_factorization() : prime_factorization.cpp
primes() : prime_numbers.cpp
-print() : sieve_of_eratosthenes.cpp
printArray() : heap_sort.cpp
problem() : ode_forward_euler.cpp , ode_midpoint_euler.cpp , ode_semi_implicit_euler.cpp
push() : paranthesis_matching.cpp
diff --git a/globals_func_s.html b/globals_func_s.html
index a1448fdb4..8af17b9b3 100644
--- a/globals_func_s.html
+++ b/globals_func_s.html
@@ -119,7 +119,6 @@ $(function(){initNavTree('globals_func_s.html',''); initResizable(true); });
show_data() : shell_sort2.cpp
show_pascal() : pascal_triangle.cpp
Sieve() : primes_up_to_billion.cpp
-sieve() : sieve_of_eratosthenes.cpp
SieveOfEratosthenes() : prime_factorization.cpp
SLEEP() : memory_game.cpp
sortcol() : fcfs_scheduling.cpp
diff --git a/globals_func_t.html b/globals_func_t.html
index 7b63e71ba..2d7b42495 100644
--- a/globals_func_t.html
+++ b/globals_func_t.html
@@ -145,7 +145,7 @@ $(function(){initNavTree('globals_func_t.html',''); initResizable(true); });
test_longest_common_string_length_for_reversed_inputs() : longest_common_string.cpp
test_longest_common_string_length_is_symmetric() : longest_common_string.cpp
test_remove() : binary_search_tree2.cpp
-tests() : armstrong_number.cpp , longest_common_string.cpp , Unbounded_0_1_Knapsack.cpp , bidirectional_dijkstra.cpp , breadth_first_search.cpp , connected_components.cpp , depth_first_search_with_stack.cpp , dijkstra.cpp , hopcroft_karp.cpp , lowest_common_ancestor.cpp , travelling_salesman_problem.cpp , binary_addition.cpp , boruvkas_minimum_spanning_tree.cpp , digit_separation.cpp , dijkstra.cpp , gale_shapley.cpp , approximate_pi.cpp , binomial_calculate.cpp , check_amicable_pair.cpp , check_factorial.cpp , check_prime.cpp , complex_numbers.cpp , double_factorial.cpp , factorial.cpp , least_common_multiple.cpp , magic_number.cpp , miller_rabin.cpp , ncr_modulo_p.cpp , number_of_positive_divisors.cpp , sieve_of_eratosthenes.cpp , kelvin_to_celsius.cpp , longest_substring_without_repeating_characters.cpp , recursive_tree_traversal.cpp , fenwick_tree.cpp , linear_search.cpp , longest_increasing_subsequence_using_binary_search.cpp , comb_sort.cpp , insertion_sort.cpp , insertion_sort_recursive.cpp , quick_sort.cpp , quick_sort_iterative.cpp , radix_sort2.cpp , boyer_moore.cpp , knuth_morris_pratt.cpp
+tests() : armstrong_number.cpp , longest_common_string.cpp , Unbounded_0_1_Knapsack.cpp , bidirectional_dijkstra.cpp , breadth_first_search.cpp , connected_components.cpp , depth_first_search_with_stack.cpp , dijkstra.cpp , hopcroft_karp.cpp , lowest_common_ancestor.cpp , travelling_salesman_problem.cpp , binary_addition.cpp , boruvkas_minimum_spanning_tree.cpp , digit_separation.cpp , dijkstra.cpp , gale_shapley.cpp , approximate_pi.cpp , binomial_calculate.cpp , check_amicable_pair.cpp , check_factorial.cpp , check_prime.cpp , complex_numbers.cpp , double_factorial.cpp , factorial.cpp , least_common_multiple.cpp , magic_number.cpp , miller_rabin.cpp , ncr_modulo_p.cpp , number_of_positive_divisors.cpp , sieve_of_eratosthenes.cpp , kelvin_to_celsius.cpp , longest_substring_without_repeating_characters.cpp , recursive_tree_traversal.cpp , fenwick_tree.cpp , linear_search.cpp , longest_increasing_subsequence_using_binary_search.cpp , comb_sort.cpp , insertion_sort.cpp , insertion_sort_recursive.cpp , quick_sort.cpp , quick_sort_iterative.cpp , radix_sort2.cpp , boyer_moore.cpp , knuth_morris_pratt.cpp
TH() : tower_of_hanoi.cpp
tolowerRoman() : decimal_to_roman_numeral.cpp
toupperRoman() : decimal_to_roman_numeral.cpp
diff --git a/globals_p.html b/globals_p.html
index b44489e06..474a48d05 100644
--- a/globals_p.html
+++ b/globals_p.html
@@ -124,7 +124,6 @@ $(function(){initNavTree('globals_p.html',''); initResizable(true); });
prime_factorization() : prime_factorization.cpp
prime_numbers : prime_factorization.cpp
primes() : prime_numbers.cpp
-print() : sieve_of_eratosthenes.cpp
printArray() : heap_sort.cpp
problem() : ode_forward_euler.cpp , ode_midpoint_euler.cpp , ode_semi_implicit_euler.cpp
push() : paranthesis_matching.cpp
diff --git a/globals_s.html b/globals_s.html
index 9dfa450e6..194c7b5ac 100644
--- a/globals_s.html
+++ b/globals_s.html
@@ -119,7 +119,6 @@ $(function(){initNavTree('globals_s.html',''); initResizable(true); });
show_data() : shell_sort2.cpp
show_pascal() : pascal_triangle.cpp
Sieve() : primes_up_to_billion.cpp
-sieve() : sieve_of_eratosthenes.cpp
SieveOfEratosthenes() : prime_factorization.cpp
SLEEP() : memory_game.cpp
sortcol() : fcfs_scheduling.cpp
diff --git a/globals_t.html b/globals_t.html
index 04e29cad7..09c9e9241 100644
--- a/globals_t.html
+++ b/globals_t.html
@@ -146,7 +146,7 @@ $(function(){initNavTree('globals_t.html',''); initResizable(true); });
test_longest_common_string_length_is_symmetric() : longest_common_string.cpp
test_remove() : binary_search_tree2.cpp
test_set : brute_force_string_searching.cpp
-tests() : armstrong_number.cpp , longest_common_string.cpp , Unbounded_0_1_Knapsack.cpp , bidirectional_dijkstra.cpp , breadth_first_search.cpp , connected_components.cpp , depth_first_search_with_stack.cpp , dijkstra.cpp , hopcroft_karp.cpp , lowest_common_ancestor.cpp , travelling_salesman_problem.cpp , binary_addition.cpp , boruvkas_minimum_spanning_tree.cpp , digit_separation.cpp , dijkstra.cpp , gale_shapley.cpp , approximate_pi.cpp , binomial_calculate.cpp , check_amicable_pair.cpp , check_factorial.cpp , check_prime.cpp , complex_numbers.cpp , double_factorial.cpp , factorial.cpp , least_common_multiple.cpp , magic_number.cpp , miller_rabin.cpp , ncr_modulo_p.cpp , number_of_positive_divisors.cpp , sieve_of_eratosthenes.cpp , kelvin_to_celsius.cpp , longest_substring_without_repeating_characters.cpp , recursive_tree_traversal.cpp , fenwick_tree.cpp , linear_search.cpp , longest_increasing_subsequence_using_binary_search.cpp , comb_sort.cpp , insertion_sort.cpp , insertion_sort_recursive.cpp , quick_sort.cpp , quick_sort_iterative.cpp , radix_sort2.cpp , boyer_moore.cpp , knuth_morris_pratt.cpp
+tests() : armstrong_number.cpp , longest_common_string.cpp , Unbounded_0_1_Knapsack.cpp , bidirectional_dijkstra.cpp , breadth_first_search.cpp , connected_components.cpp , depth_first_search_with_stack.cpp , dijkstra.cpp , hopcroft_karp.cpp , lowest_common_ancestor.cpp , travelling_salesman_problem.cpp , binary_addition.cpp , boruvkas_minimum_spanning_tree.cpp , digit_separation.cpp , dijkstra.cpp , gale_shapley.cpp , approximate_pi.cpp , binomial_calculate.cpp , check_amicable_pair.cpp , check_factorial.cpp , check_prime.cpp , complex_numbers.cpp , double_factorial.cpp , factorial.cpp , least_common_multiple.cpp , magic_number.cpp , miller_rabin.cpp , ncr_modulo_p.cpp , number_of_positive_divisors.cpp , sieve_of_eratosthenes.cpp , kelvin_to_celsius.cpp , longest_substring_without_repeating_characters.cpp , recursive_tree_traversal.cpp , fenwick_tree.cpp , linear_search.cpp , longest_increasing_subsequence_using_binary_search.cpp , comb_sort.cpp , insertion_sort.cpp , insertion_sort_recursive.cpp , quick_sort.cpp , quick_sort_iterative.cpp , radix_sort2.cpp , boyer_moore.cpp , knuth_morris_pratt.cpp
TH() : tower_of_hanoi.cpp
tolowerRoman() : decimal_to_roman_numeral.cpp
toupperRoman() : decimal_to_roman_numeral.cpp
diff --git a/namespaces.html b/namespaces.html
index c02a122d6..304977aac 100644
--- a/namespaces.html
+++ b/namespaces.html
@@ -228,39 +228,40 @@ solve-a-rat-in-a-maze-c-java-pytho/" target="_blank">Rat in a Maze algorithm
N setKthBit Functions for the [From the right, set the Kth bit in the binary representation of N] (https://practice.geeksforgeeks.org/problems/set-kth-bit3724/1/ ) implementation
N SHA Functions for the SHA-1 algorithm implementation
N shortest_common_supersequence Shortest Common Super Sequence algorithm
- N simpson_method Contains the Simpson's method implementation
- N sorting For working with vectors
- N sparse_table Functions for Implementation of Sparse Table
- N spirograph
- N stack_using_queue Functions for the Stack Using Queue implementation
- N statistics Statistical algorithms
- N std STL namespace
- N strand Functions for Strand Sort algorithm
- N strassens_multiplication Namespace for performing strassen's multiplication
- N string String manipulation algorithms
- N string_search String search algorithms
- ► N strings String algorithms
- N boyer_moore Functions for the Boyer Moore algorithm implementation
- N subarray_sum Functions for the Subset sum implementation
- N sublist_search Functions for the Sublist Search implementation
- N subset_sum Functions for [Sub-set sum problem] (https://en.wikipedia.org/wiki/Subset_sum_problem ) algorithm
- N Subsets Functions for the Subset Sum problem
- N sudoku_solver Functions for the Sudoku Solver implementation
- N tests Testcases to check Union of Two Arrays
- N travellingSalesman_bitmanipulation Functions for the Travelling Salesman Bitmask implementation
- N tree_234 Functions for 2–3–4 tree
- N trie_operations Functions for Trie datastructure implementation
- N trie_using_hashmap Functions for Trie data structure using hashmap implementation
- N util_functions Various utility functions used in Neural network
- N utils This namespace contains the definitions of the functions called from the class math::ncr_modulo_p::NCRModuloP
- N vector_cross Functions for Vector Cross Product algorithms
- N vigenere Functions for vigenère cipher algorithm
- N wave_sort Functions for the Wave sort implementation
- N wiggle_sort Functions for Wiggle Sort algorithm
- N wildcard_matching Functions for the Wildcard Matching problem
- N windowed_median Functions for the Windowed Median algorithm implementation
- N word_break Functions for Word Break problem
- N XOR Functions for XOR cipher algorithm
+ N sieve_of_eratosthenes Functions for finding Prime Numbers using Sieve of Eratosthenes
+ N simpson_method Contains the Simpson's method implementation
+ N sorting For working with vectors
+ N sparse_table Functions for Implementation of Sparse Table
+ N spirograph
+ N stack_using_queue Functions for the Stack Using Queue implementation
+ N statistics Statistical algorithms
+ N std STL namespace
+ N strand Functions for Strand Sort algorithm
+ N strassens_multiplication Namespace for performing strassen's multiplication
+ N string String manipulation algorithms
+ N string_search String search algorithms
+ ► N strings String algorithms
+ N boyer_moore Functions for the Boyer Moore algorithm implementation
+ N subarray_sum Functions for the Subset sum implementation
+ N sublist_search Functions for the Sublist Search implementation
+ N subset_sum Functions for [Sub-set sum problem] (https://en.wikipedia.org/wiki/Subset_sum_problem ) algorithm
+ N Subsets Functions for the Subset Sum problem
+ N sudoku_solver Functions for the Sudoku Solver implementation
+ N tests Testcases to check Union of Two Arrays
+ N travellingSalesman_bitmanipulation Functions for the Travelling Salesman Bitmask implementation
+ N tree_234 Functions for 2–3–4 tree
+ N trie_operations Functions for Trie datastructure implementation
+ N trie_using_hashmap Functions for Trie data structure using hashmap implementation
+ N util_functions Various utility functions used in Neural network
+ N utils This namespace contains the definitions of the functions called from the class math::ncr_modulo_p::NCRModuloP
+ N vector_cross Functions for Vector Cross Product algorithms
+ N vigenere Functions for vigenère cipher algorithm
+ N wave_sort Functions for the Wave sort implementation
+ N wiggle_sort Functions for Wiggle Sort algorithm
+ N wildcard_matching Functions for the Wildcard Matching problem
+ N windowed_median Functions for the Windowed Median algorithm implementation
+ N word_break Functions for Word Break problem
+ N XOR Functions for XOR cipher algorithm
diff --git a/namespaces_dup.js b/namespaces_dup.js
index 66d8e446f..e4714ba09 100644
--- a/namespaces_dup.js
+++ b/namespaces_dup.js
@@ -132,6 +132,7 @@ var namespaces_dup =
[ "setKthBit", "d8/d88/namespaceset_kth_bit.html", null ],
[ "SHA", "de/dd3/namespace_s_h_a.html", null ],
[ "shortest_common_supersequence", "d3/deb/namespaceshortest__common__supersequence.html", null ],
+ [ "sieve_of_eratosthenes", "d2/db0/namespacesieve__of__eratosthenes.html", null ],
[ "simpson_method", "d3/d6d/namespacesimpson__method.html", null ],
[ "sorting", "d5/d91/namespacesorting.html", [
[ "binary_search", "d5/d91/namespacesorting.html#a034d8b276518a902962e87d3158b64fd", null ],
diff --git a/navtreedata.js b/navtreedata.js
index b150d4dff..0882e40bb 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -141,17 +141,17 @@ var NAVTREEINDEX =
"cpp/thread/lock.html",
"d1/d83/classuint256__t.html#a9ddd133cee83f3a2ab6ed60a7ccbc250",
"d2/dc8/classdata__structures_1_1_stack.html#aa753346c8ee5f21d4f4482398fe6d5c1",
-"d4/d3e/n__queens_8cpp.html#a0dbd7af47d87f0b956609fe9e3288ecb",
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md57",
-"d6/d57/array__right__rotation_8cpp.html#a1bfb8711f49e591eb168ccaa3df6fb86",
-"d7/def/trie__multiple__search_8cpp.html#abf9e6b7e6f15df4b525a2e7705ba3089",
-"d8/d9c/union__of__two__arrays_8cpp.html#af7b81d7a1534216af6a36a80135beb86",
-"d9/dde/classbinary__search__tree.html#af4a865ce5244608819b169fc78a41153",
-"db/d09/duval_8cpp.html#aa8dca7b867074164d5f45b0f3851269d",
-"dc/d38/ordinary__least__squares__regressor_8cpp.html#a207b3a99fd5974d3117e0b0ac0aad234",
-"dd/d47/namespacemath.html#ab3b920cc56442abd92279ba23b50f4dc",
-"de/dc3/fibonacci__sum_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4",
-"functions_d.html"
+"d4/d3e/n__queens_8cpp.html",
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md56",
+"d6/d57/array__right__rotation_8cpp.html#a167c24bd817469ae47358d12e034f2d5",
+"d7/def/trie__multiple__search_8cpp.html#aa8dca7b867074164d5f45b0f3851269d",
+"d8/d9c/union__of__two__arrays_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4",
+"d9/dde/classbinary__search__tree.html#ad9912e8574538e86f9bd2c38e7e63d03",
+"db/d09/duval_8cpp.html",
+"dc/d38/ordinary__least__squares__regressor_8cpp.html#a01e6c7bf2b09272578b9c5819ce0f36f",
+"dd/d47/namespacemath.html#ab37f3a7302a84179aae682c79d8390bf",
+"de/dc3/fibonacci__sum_8cpp.html#aadb40ac4c74a7efc0680b83eeee138aa",
+"functions_c.html"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index 976decf71..c57449f22 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -2,252 +2,252 @@ var NAVTREEINDEX0 =
{
"annotated.html":[10,0],
"classes.html":[10,1],
-"cpp/algorithm/accumulate.html":[9,0,117,15],
-"cpp/algorithm/adjacent_difference.html":[9,0,117,19],
-"cpp/algorithm/adjacent_find.html":[9,0,117,20],
-"cpp/algorithm/all_any_none_of.html":[9,0,117,23],
-"cpp/algorithm/all_any_none_of.html":[9,0,117,25],
-"cpp/algorithm/all_any_none_of.html":[9,0,117,300],
-"cpp/algorithm/binary_search.html":[9,0,117,65],
-"cpp/algorithm/bsearch.html":[9,0,117,68],
-"cpp/algorithm/copy.html":[9,0,117,79],
-"cpp/algorithm/copy.html":[9,0,117,81],
-"cpp/algorithm/copy_backward.html":[9,0,117,80],
-"cpp/algorithm/copy_n.html":[9,0,117,82],
-"cpp/algorithm/count.html":[9,0,117,86],
-"cpp/algorithm/count.html":[9,0,117,87],
-"cpp/algorithm/equal.html":[9,0,117,103],
-"cpp/algorithm/equal_range.html":[9,0,117,104],
-"cpp/algorithm/fill.html":[9,0,117,133],
-"cpp/algorithm/fill_n.html":[9,0,117,134],
-"cpp/algorithm/find.html":[9,0,117,135],
-"cpp/algorithm/find.html":[9,0,117,138],
-"cpp/algorithm/find.html":[9,0,117,139],
-"cpp/algorithm/find_end.html":[9,0,117,136],
-"cpp/algorithm/find_first_of.html":[9,0,117,137],
-"cpp/algorithm/for_each.html":[9,0,117,148],
-"cpp/algorithm/generate.html":[9,0,117,170],
-"cpp/algorithm/generate_n.html":[9,0,117,172],
-"cpp/algorithm/includes.html":[9,0,117,193],
-"cpp/algorithm/inner_product.html":[9,0,117,194],
-"cpp/algorithm/inplace_merge.html":[9,0,117,195],
-"cpp/algorithm/iota.html":[9,0,117,198],
-"cpp/algorithm/is_heap.html":[9,0,117,199],
-"cpp/algorithm/is_heap_until.html":[9,0,117,200],
-"cpp/algorithm/is_partitioned.html":[9,0,117,201],
-"cpp/algorithm/is_permutation.html":[9,0,117,202],
-"cpp/algorithm/is_sorted.html":[9,0,117,203],
-"cpp/algorithm/is_sorted_until.html":[9,0,117,204],
-"cpp/algorithm/iter_swap.html":[9,0,117,234],
-"cpp/algorithm/lexicographical_compare.html":[9,0,117,240],
-"cpp/algorithm/lower_bound.html":[9,0,117,253],
-"cpp/algorithm/make_heap.html":[9,0,117,257],
-"cpp/algorithm/max.html":[9,0,117,263],
-"cpp/algorithm/max_element.html":[9,0,117,264],
-"cpp/algorithm/merge.html":[9,0,117,280],
-"cpp/algorithm/min.html":[9,0,117,281],
-"cpp/algorithm/min_element.html":[9,0,117,282],
-"cpp/algorithm/minmax.html":[9,0,117,283],
-"cpp/algorithm/minmax_element.html":[9,0,117,284],
-"cpp/algorithm/mismatch.html":[9,0,117,285],
-"cpp/algorithm/move_backward.html":[9,0,117,289],
-"cpp/algorithm/next_permutation.html":[9,0,117,296],
-"cpp/algorithm/nth_element.html":[9,0,117,310],
-"cpp/algorithm/partial_sort.html":[9,0,117,312],
-"cpp/algorithm/partial_sort_copy.html":[9,0,117,313],
-"cpp/algorithm/partial_sum.html":[9,0,117,314],
-"cpp/algorithm/partition.html":[9,0,117,315],
-"cpp/algorithm/partition_copy.html":[9,0,117,316],
-"cpp/algorithm/partition_point.html":[9,0,117,317],
-"cpp/algorithm/pop_heap.html":[9,0,117,319],
-"cpp/algorithm/prev_permutation.html":[9,0,117,322],
-"cpp/algorithm/push_heap.html":[9,0,117,324],
-"cpp/algorithm/qsort.html":[9,0,117,331],
-"cpp/algorithm/random_shuffle.html":[9,0,117,335],
-"cpp/algorithm/random_shuffle.html":[9,0,117,388],
-"cpp/algorithm/remove.html":[9,0,117,342],
-"cpp/algorithm/remove.html":[9,0,117,345],
-"cpp/algorithm/remove_copy.html":[9,0,117,343],
-"cpp/algorithm/remove_copy.html":[9,0,117,344],
-"cpp/algorithm/replace.html":[9,0,117,348],
-"cpp/algorithm/replace.html":[9,0,117,351],
-"cpp/algorithm/replace_copy.html":[9,0,117,349],
-"cpp/algorithm/replace_copy.html":[9,0,117,350],
-"cpp/algorithm/reverse.html":[9,0,117,356],
-"cpp/algorithm/reverse_copy.html":[9,0,117,357],
-"cpp/algorithm/rotate.html":[9,0,117,361],
-"cpp/algorithm/rotate_copy.html":[9,0,117,362],
-"cpp/algorithm/search.html":[9,0,117,368],
-"cpp/algorithm/search_n.html":[9,0,117,369],
-"cpp/algorithm/set_difference.html":[9,0,117,370],
-"cpp/algorithm/set_intersection.html":[9,0,117,371],
-"cpp/algorithm/set_symmetric_difference.html":[9,0,117,373],
-"cpp/algorithm/set_union.html":[9,0,117,376],
-"cpp/algorithm/sort.html":[9,0,117,395],
-"cpp/algorithm/sort_heap.html":[9,0,117,396],
-"cpp/algorithm/stable_partition.html":[9,0,117,401],
-"cpp/algorithm/stable_sort.html":[9,0,117,402],
-"cpp/algorithm/swap.html":[9,0,117,439],
-"cpp/algorithm/swap_ranges.html":[9,0,117,440],
-"cpp/algorithm/transform.html":[9,0,117,461],
-"cpp/algorithm/unique.html":[9,0,117,475],
-"cpp/algorithm/unique_copy.html":[9,0,117,476],
-"cpp/algorithm/upper_bound.html":[9,0,117,478],
-"cpp/atomic/atomic_compare_exchange.html":[9,0,117,39],
-"cpp/atomic/atomic_compare_exchange.html":[9,0,117,40],
-"cpp/atomic/atomic_compare_exchange.html":[9,0,117,41],
-"cpp/atomic/atomic_compare_exchange.html":[9,0,117,42],
-"cpp/atomic/atomic_exchange.html":[9,0,117,43],
-"cpp/atomic/atomic_exchange.html":[9,0,117,44],
-"cpp/atomic/atomic_fetch_add.html":[9,0,117,45],
-"cpp/atomic/atomic_fetch_add.html":[9,0,117,46],
-"cpp/atomic/atomic_fetch_or.html":[9,0,117,49],
-"cpp/atomic/atomic_fetch_or.html":[9,0,117,50],
-"cpp/atomic/atomic_fetch_sub.html":[9,0,117,47],
-"cpp/atomic/atomic_fetch_sub.html":[9,0,117,48],
-"cpp/atomic/atomic_fetch_sub.html":[9,0,117,51],
-"cpp/atomic/atomic_fetch_sub.html":[9,0,117,52],
-"cpp/atomic/atomic_fetch_xor.html":[9,0,117,53],
-"cpp/atomic/atomic_fetch_xor.html":[9,0,117,54],
-"cpp/atomic/atomic_init.html":[9,0,117,55],
-"cpp/atomic/atomic_is_lock_free.html":[9,0,117,56],
-"cpp/atomic/atomic_load.html":[9,0,117,57],
-"cpp/atomic/atomic_load.html":[9,0,117,58],
-"cpp/atomic/atomic_signal_fence.html":[9,0,117,59],
-"cpp/atomic/atomic_store.html":[9,0,117,60],
-"cpp/atomic/atomic_store.html":[9,0,117,61],
-"cpp/atomic/atomic_thread_fence.html":[9,0,117,62],
-"cpp/atomic/kill_dependency.html":[9,0,117,235],
-"cpp/chrono/c/asctime.html":[9,0,117,26],
-"cpp/chrono/c/clock.html":[9,0,117,77],
-"cpp/chrono/c/ctime.html":[9,0,117,89],
-"cpp/chrono/c/difftime.html":[9,0,117,96],
-"cpp/chrono/c/gmtime.html":[9,0,117,187],
-"cpp/chrono/c/localtime.html":[9,0,117,246],
-"cpp/chrono/c/mktime.html":[9,0,117,286],
-"cpp/chrono/c/strftime.html":[9,0,117,419],
-"cpp/chrono/c/time.html":[9,0,117,451],
-"cpp/chrono/c/wcsftime.html":[9,0,117,501],
-"cpp/chrono/duration/duration_cast.html":[9,0,117,0,0],
-"cpp/chrono/time_point/time_point_cast.html":[9,0,117,0,1],
-"cpp/error/current_exception.html":[9,0,117,90],
-"cpp/error/generic_category.html":[9,0,117,173],
-"cpp/error/get_terminate.html":[9,0,117,178],
-"cpp/error/get_unexpected.html":[9,0,117,180],
-"cpp/error/make_exception_ptr.html":[9,0,117,256],
-"cpp/error/rethrow_exception.html":[9,0,117,353],
-"cpp/error/rethrow_if_nested.html":[9,0,117,354],
-"cpp/error/set_terminate.html":[9,0,117,374],
-"cpp/error/set_unexpected.html":[9,0,117,375],
-"cpp/error/system_category.html":[9,0,117,444],
-"cpp/error/terminate.html":[9,0,117,447],
-"cpp/error/throw_with_nested.html":[9,0,117,449],
-"cpp/error/uncaught_exception.html":[9,0,117,465],
-"cpp/error/unexpected.html":[9,0,117,468],
-"cpp/experimental/optional/make_optional.html":[9,0,117,1,0],
-"cpp/io/c/clearerr.html":[9,0,117,76],
-"cpp/io/c/fclose.html":[9,0,117,112],
-"cpp/io/c/feof.html":[9,0,117,119],
-"cpp/io/c/ferror.html":[9,0,117,121],
-"cpp/io/c/fflush.html":[9,0,117,127],
-"cpp/io/c/fgetc.html":[9,0,117,128],
-"cpp/io/c/fgetc.html":[9,0,117,181],
-"cpp/io/c/fgetpos.html":[9,0,117,129],
-"cpp/io/c/fgets.html":[9,0,117,130],
-"cpp/io/c/fgetwc.html":[9,0,117,131],
-"cpp/io/c/fgetws.html":[9,0,117,132],
-"cpp/io/c/fopen.html":[9,0,117,147],
-"cpp/io/c/fprintf.html":[9,0,117,152],
-"cpp/io/c/fprintf.html":[9,0,117,323],
-"cpp/io/c/fprintf.html":[9,0,117,394],
-"cpp/io/c/fprintf.html":[9,0,117,397],
-"cpp/io/c/fputc.html":[9,0,117,153],
-"cpp/io/c/fputc.html":[9,0,117,327],
-"cpp/io/c/fputs.html":[9,0,117,154],
-"cpp/io/c/fputwc.html":[9,0,117,155],
-"cpp/io/c/fputws.html":[9,0,117,156],
-"cpp/io/c/fread.html":[9,0,117,157],
-"cpp/io/c/freopen.html":[9,0,117,159],
-"cpp/io/c/fscanf.html":[9,0,117,162],
-"cpp/io/c/fscanf.html":[9,0,117,366],
-"cpp/io/c/fscanf.html":[9,0,117,400],
-"cpp/io/c/fseek.html":[9,0,117,163],
-"cpp/io/c/fsetpos.html":[9,0,117,164],
-"cpp/io/c/ftell.html":[9,0,117,165],
-"cpp/io/c/fwprintf.html":[9,0,117,167],
-"cpp/io/c/fwprintf.html":[9,0,117,441],
-"cpp/io/c/fwprintf.html":[9,0,117,531],
-"cpp/io/c/fwrite.html":[9,0,117,168],
-"cpp/io/c/fwscanf.html":[9,0,117,169],
-"cpp/io/c/fwscanf.html":[9,0,117,442],
-"cpp/io/c/fwscanf.html":[9,0,117,533],
-"cpp/io/c/getchar.html":[9,0,117,182],
-"cpp/io/c/gets.html":[9,0,117,185],
-"cpp/io/c/getwchar.html":[9,0,117,186],
-"cpp/io/c/perror.html":[9,0,117,318],
-"cpp/io/c/putchar.html":[9,0,117,328],
-"cpp/io/c/puts.html":[9,0,117,329],
-"cpp/io/c/putwchar.html":[9,0,117,330],
-"cpp/io/c/rename.html":[9,0,117,347],
-"cpp/io/c/rewind.html":[9,0,117,358],
-"cpp/io/c/setbuf.html":[9,0,117,378],
-"cpp/io/c/setvbuf.html":[9,0,117,383],
-"cpp/io/c/tmpfile.html":[9,0,117,452],
-"cpp/io/c/tmpnam.html":[9,0,117,453],
-"cpp/io/c/ungetc.html":[9,0,117,469],
-"cpp/io/c/ungetwc.html":[9,0,117,470],
-"cpp/io/c/vfprintf.html":[9,0,117,481],
-"cpp/io/c/vfprintf.html":[9,0,117,485],
-"cpp/io/c/vfprintf.html":[9,0,117,487],
-"cpp/io/c/vfprintf.html":[9,0,117,488],
-"cpp/io/c/vfscanf.html":[9,0,117,482],
-"cpp/io/c/vfscanf.html":[9,0,117,486],
-"cpp/io/c/vfscanf.html":[9,0,117,489],
-"cpp/io/c/vfwprintf.html":[9,0,117,483],
-"cpp/io/c/vfwprintf.html":[9,0,117,490],
-"cpp/io/c/vfwprintf.html":[9,0,117,492],
-"cpp/io/c/vfwscanf.html":[9,0,117,484],
-"cpp/io/c/vfwscanf.html":[9,0,117,491],
-"cpp/io/c/vfwscanf.html":[9,0,117,493],
-"cpp/io/manip/boolalpha.html":[9,0,117,67],
-"cpp/io/manip/boolalpha.html":[9,0,117,299],
-"cpp/io/manip/endl.html":[9,0,117,101],
-"cpp/io/manip/ends.html":[9,0,117,102],
-"cpp/io/manip/fixed.html":[9,0,117,95],
-"cpp/io/manip/fixed.html":[9,0,117,140],
-"cpp/io/manip/fixed.html":[9,0,117,190],
-"cpp/io/manip/fixed.html":[9,0,117,367],
-"cpp/io/manip/flush.html":[9,0,117,142],
-"cpp/io/manip/get_money.html":[9,0,117,174],
-"cpp/io/manip/get_time.html":[9,0,117,179],
-"cpp/io/manip/hex.html":[9,0,117,91],
-"cpp/io/manip/hex.html":[9,0,117,189],
-"cpp/io/manip/hex.html":[9,0,117,311],
-"cpp/io/manip/left.html":[9,0,117,197],
-"cpp/io/manip/left.html":[9,0,117,239],
-"cpp/io/manip/left.html":[9,0,117,359],
-"cpp/io/manip/put_money.html":[9,0,117,325],
-"cpp/io/manip/put_time.html":[9,0,117,326],
-"cpp/io/manip/resetiosflags.html":[9,0,117,352],
-"cpp/io/manip/setbase.html":[9,0,117,377],
-"cpp/io/manip/setfill.html":[9,0,117,379],
-"cpp/io/manip/setiosflags.html":[9,0,117,380],
-"cpp/io/manip/setprecision.html":[9,0,117,382],
-"cpp/io/manip/setw.html":[9,0,117,384],
-"cpp/io/manip/showbase.html":[9,0,117,301],
-"cpp/io/manip/showbase.html":[9,0,117,385],
-"cpp/io/manip/showpoint.html":[9,0,117,302],
-"cpp/io/manip/showpoint.html":[9,0,117,386],
-"cpp/io/manip/showpos.html":[9,0,117,303],
-"cpp/io/manip/showpos.html":[9,0,117,387],
-"cpp/io/manip/skipws.html":[9,0,117,304],
-"cpp/io/manip/skipws.html":[9,0,117,393],
-"cpp/io/manip/unitbuf.html":[9,0,117,308],
-"cpp/io/manip/unitbuf.html":[9,0,117,477],
-"cpp/io/manip/uppercase.html":[9,0,117,309],
-"cpp/io/manip/uppercase.html":[9,0,117,479],
-"cpp/io/manip/ws.html":[9,0,117,532],
-"cpp/iterator/advance.html":[9,0,117,21],
-"cpp/iterator/back_inserter.html":[9,0,117,63],
-"cpp/iterator/begin.html":[9,0,117,64]
+"cpp/algorithm/accumulate.html":[9,0,118,15],
+"cpp/algorithm/adjacent_difference.html":[9,0,118,19],
+"cpp/algorithm/adjacent_find.html":[9,0,118,20],
+"cpp/algorithm/all_any_none_of.html":[9,0,118,23],
+"cpp/algorithm/all_any_none_of.html":[9,0,118,25],
+"cpp/algorithm/all_any_none_of.html":[9,0,118,300],
+"cpp/algorithm/binary_search.html":[9,0,118,65],
+"cpp/algorithm/bsearch.html":[9,0,118,68],
+"cpp/algorithm/copy.html":[9,0,118,79],
+"cpp/algorithm/copy.html":[9,0,118,81],
+"cpp/algorithm/copy_backward.html":[9,0,118,80],
+"cpp/algorithm/copy_n.html":[9,0,118,82],
+"cpp/algorithm/count.html":[9,0,118,86],
+"cpp/algorithm/count.html":[9,0,118,87],
+"cpp/algorithm/equal.html":[9,0,118,103],
+"cpp/algorithm/equal_range.html":[9,0,118,104],
+"cpp/algorithm/fill.html":[9,0,118,133],
+"cpp/algorithm/fill_n.html":[9,0,118,134],
+"cpp/algorithm/find.html":[9,0,118,135],
+"cpp/algorithm/find.html":[9,0,118,138],
+"cpp/algorithm/find.html":[9,0,118,139],
+"cpp/algorithm/find_end.html":[9,0,118,136],
+"cpp/algorithm/find_first_of.html":[9,0,118,137],
+"cpp/algorithm/for_each.html":[9,0,118,148],
+"cpp/algorithm/generate.html":[9,0,118,170],
+"cpp/algorithm/generate_n.html":[9,0,118,172],
+"cpp/algorithm/includes.html":[9,0,118,193],
+"cpp/algorithm/inner_product.html":[9,0,118,194],
+"cpp/algorithm/inplace_merge.html":[9,0,118,195],
+"cpp/algorithm/iota.html":[9,0,118,198],
+"cpp/algorithm/is_heap.html":[9,0,118,199],
+"cpp/algorithm/is_heap_until.html":[9,0,118,200],
+"cpp/algorithm/is_partitioned.html":[9,0,118,201],
+"cpp/algorithm/is_permutation.html":[9,0,118,202],
+"cpp/algorithm/is_sorted.html":[9,0,118,203],
+"cpp/algorithm/is_sorted_until.html":[9,0,118,204],
+"cpp/algorithm/iter_swap.html":[9,0,118,234],
+"cpp/algorithm/lexicographical_compare.html":[9,0,118,240],
+"cpp/algorithm/lower_bound.html":[9,0,118,253],
+"cpp/algorithm/make_heap.html":[9,0,118,257],
+"cpp/algorithm/max.html":[9,0,118,263],
+"cpp/algorithm/max_element.html":[9,0,118,264],
+"cpp/algorithm/merge.html":[9,0,118,280],
+"cpp/algorithm/min.html":[9,0,118,281],
+"cpp/algorithm/min_element.html":[9,0,118,282],
+"cpp/algorithm/minmax.html":[9,0,118,283],
+"cpp/algorithm/minmax_element.html":[9,0,118,284],
+"cpp/algorithm/mismatch.html":[9,0,118,285],
+"cpp/algorithm/move_backward.html":[9,0,118,289],
+"cpp/algorithm/next_permutation.html":[9,0,118,296],
+"cpp/algorithm/nth_element.html":[9,0,118,310],
+"cpp/algorithm/partial_sort.html":[9,0,118,312],
+"cpp/algorithm/partial_sort_copy.html":[9,0,118,313],
+"cpp/algorithm/partial_sum.html":[9,0,118,314],
+"cpp/algorithm/partition.html":[9,0,118,315],
+"cpp/algorithm/partition_copy.html":[9,0,118,316],
+"cpp/algorithm/partition_point.html":[9,0,118,317],
+"cpp/algorithm/pop_heap.html":[9,0,118,319],
+"cpp/algorithm/prev_permutation.html":[9,0,118,322],
+"cpp/algorithm/push_heap.html":[9,0,118,324],
+"cpp/algorithm/qsort.html":[9,0,118,331],
+"cpp/algorithm/random_shuffle.html":[9,0,118,335],
+"cpp/algorithm/random_shuffle.html":[9,0,118,388],
+"cpp/algorithm/remove.html":[9,0,118,342],
+"cpp/algorithm/remove.html":[9,0,118,345],
+"cpp/algorithm/remove_copy.html":[9,0,118,343],
+"cpp/algorithm/remove_copy.html":[9,0,118,344],
+"cpp/algorithm/replace.html":[9,0,118,348],
+"cpp/algorithm/replace.html":[9,0,118,351],
+"cpp/algorithm/replace_copy.html":[9,0,118,349],
+"cpp/algorithm/replace_copy.html":[9,0,118,350],
+"cpp/algorithm/reverse.html":[9,0,118,356],
+"cpp/algorithm/reverse_copy.html":[9,0,118,357],
+"cpp/algorithm/rotate.html":[9,0,118,361],
+"cpp/algorithm/rotate_copy.html":[9,0,118,362],
+"cpp/algorithm/search.html":[9,0,118,368],
+"cpp/algorithm/search_n.html":[9,0,118,369],
+"cpp/algorithm/set_difference.html":[9,0,118,370],
+"cpp/algorithm/set_intersection.html":[9,0,118,371],
+"cpp/algorithm/set_symmetric_difference.html":[9,0,118,373],
+"cpp/algorithm/set_union.html":[9,0,118,376],
+"cpp/algorithm/sort.html":[9,0,118,395],
+"cpp/algorithm/sort_heap.html":[9,0,118,396],
+"cpp/algorithm/stable_partition.html":[9,0,118,401],
+"cpp/algorithm/stable_sort.html":[9,0,118,402],
+"cpp/algorithm/swap.html":[9,0,118,439],
+"cpp/algorithm/swap_ranges.html":[9,0,118,440],
+"cpp/algorithm/transform.html":[9,0,118,461],
+"cpp/algorithm/unique.html":[9,0,118,475],
+"cpp/algorithm/unique_copy.html":[9,0,118,476],
+"cpp/algorithm/upper_bound.html":[9,0,118,478],
+"cpp/atomic/atomic_compare_exchange.html":[9,0,118,39],
+"cpp/atomic/atomic_compare_exchange.html":[9,0,118,40],
+"cpp/atomic/atomic_compare_exchange.html":[9,0,118,41],
+"cpp/atomic/atomic_compare_exchange.html":[9,0,118,42],
+"cpp/atomic/atomic_exchange.html":[9,0,118,43],
+"cpp/atomic/atomic_exchange.html":[9,0,118,44],
+"cpp/atomic/atomic_fetch_add.html":[9,0,118,45],
+"cpp/atomic/atomic_fetch_add.html":[9,0,118,46],
+"cpp/atomic/atomic_fetch_or.html":[9,0,118,49],
+"cpp/atomic/atomic_fetch_or.html":[9,0,118,50],
+"cpp/atomic/atomic_fetch_sub.html":[9,0,118,47],
+"cpp/atomic/atomic_fetch_sub.html":[9,0,118,48],
+"cpp/atomic/atomic_fetch_sub.html":[9,0,118,51],
+"cpp/atomic/atomic_fetch_sub.html":[9,0,118,52],
+"cpp/atomic/atomic_fetch_xor.html":[9,0,118,53],
+"cpp/atomic/atomic_fetch_xor.html":[9,0,118,54],
+"cpp/atomic/atomic_init.html":[9,0,118,55],
+"cpp/atomic/atomic_is_lock_free.html":[9,0,118,56],
+"cpp/atomic/atomic_load.html":[9,0,118,57],
+"cpp/atomic/atomic_load.html":[9,0,118,58],
+"cpp/atomic/atomic_signal_fence.html":[9,0,118,59],
+"cpp/atomic/atomic_store.html":[9,0,118,60],
+"cpp/atomic/atomic_store.html":[9,0,118,61],
+"cpp/atomic/atomic_thread_fence.html":[9,0,118,62],
+"cpp/atomic/kill_dependency.html":[9,0,118,235],
+"cpp/chrono/c/asctime.html":[9,0,118,26],
+"cpp/chrono/c/clock.html":[9,0,118,77],
+"cpp/chrono/c/ctime.html":[9,0,118,89],
+"cpp/chrono/c/difftime.html":[9,0,118,96],
+"cpp/chrono/c/gmtime.html":[9,0,118,187],
+"cpp/chrono/c/localtime.html":[9,0,118,246],
+"cpp/chrono/c/mktime.html":[9,0,118,286],
+"cpp/chrono/c/strftime.html":[9,0,118,419],
+"cpp/chrono/c/time.html":[9,0,118,451],
+"cpp/chrono/c/wcsftime.html":[9,0,118,501],
+"cpp/chrono/duration/duration_cast.html":[9,0,118,0,0],
+"cpp/chrono/time_point/time_point_cast.html":[9,0,118,0,1],
+"cpp/error/current_exception.html":[9,0,118,90],
+"cpp/error/generic_category.html":[9,0,118,173],
+"cpp/error/get_terminate.html":[9,0,118,178],
+"cpp/error/get_unexpected.html":[9,0,118,180],
+"cpp/error/make_exception_ptr.html":[9,0,118,256],
+"cpp/error/rethrow_exception.html":[9,0,118,353],
+"cpp/error/rethrow_if_nested.html":[9,0,118,354],
+"cpp/error/set_terminate.html":[9,0,118,374],
+"cpp/error/set_unexpected.html":[9,0,118,375],
+"cpp/error/system_category.html":[9,0,118,444],
+"cpp/error/terminate.html":[9,0,118,447],
+"cpp/error/throw_with_nested.html":[9,0,118,449],
+"cpp/error/uncaught_exception.html":[9,0,118,465],
+"cpp/error/unexpected.html":[9,0,118,468],
+"cpp/experimental/optional/make_optional.html":[9,0,118,1,0],
+"cpp/io/c/clearerr.html":[9,0,118,76],
+"cpp/io/c/fclose.html":[9,0,118,112],
+"cpp/io/c/feof.html":[9,0,118,119],
+"cpp/io/c/ferror.html":[9,0,118,121],
+"cpp/io/c/fflush.html":[9,0,118,127],
+"cpp/io/c/fgetc.html":[9,0,118,128],
+"cpp/io/c/fgetc.html":[9,0,118,181],
+"cpp/io/c/fgetpos.html":[9,0,118,129],
+"cpp/io/c/fgets.html":[9,0,118,130],
+"cpp/io/c/fgetwc.html":[9,0,118,131],
+"cpp/io/c/fgetws.html":[9,0,118,132],
+"cpp/io/c/fopen.html":[9,0,118,147],
+"cpp/io/c/fprintf.html":[9,0,118,152],
+"cpp/io/c/fprintf.html":[9,0,118,323],
+"cpp/io/c/fprintf.html":[9,0,118,394],
+"cpp/io/c/fprintf.html":[9,0,118,397],
+"cpp/io/c/fputc.html":[9,0,118,153],
+"cpp/io/c/fputc.html":[9,0,118,327],
+"cpp/io/c/fputs.html":[9,0,118,154],
+"cpp/io/c/fputwc.html":[9,0,118,155],
+"cpp/io/c/fputws.html":[9,0,118,156],
+"cpp/io/c/fread.html":[9,0,118,157],
+"cpp/io/c/freopen.html":[9,0,118,159],
+"cpp/io/c/fscanf.html":[9,0,118,162],
+"cpp/io/c/fscanf.html":[9,0,118,366],
+"cpp/io/c/fscanf.html":[9,0,118,400],
+"cpp/io/c/fseek.html":[9,0,118,163],
+"cpp/io/c/fsetpos.html":[9,0,118,164],
+"cpp/io/c/ftell.html":[9,0,118,165],
+"cpp/io/c/fwprintf.html":[9,0,118,167],
+"cpp/io/c/fwprintf.html":[9,0,118,441],
+"cpp/io/c/fwprintf.html":[9,0,118,531],
+"cpp/io/c/fwrite.html":[9,0,118,168],
+"cpp/io/c/fwscanf.html":[9,0,118,169],
+"cpp/io/c/fwscanf.html":[9,0,118,442],
+"cpp/io/c/fwscanf.html":[9,0,118,533],
+"cpp/io/c/getchar.html":[9,0,118,182],
+"cpp/io/c/gets.html":[9,0,118,185],
+"cpp/io/c/getwchar.html":[9,0,118,186],
+"cpp/io/c/perror.html":[9,0,118,318],
+"cpp/io/c/putchar.html":[9,0,118,328],
+"cpp/io/c/puts.html":[9,0,118,329],
+"cpp/io/c/putwchar.html":[9,0,118,330],
+"cpp/io/c/rename.html":[9,0,118,347],
+"cpp/io/c/rewind.html":[9,0,118,358],
+"cpp/io/c/setbuf.html":[9,0,118,378],
+"cpp/io/c/setvbuf.html":[9,0,118,383],
+"cpp/io/c/tmpfile.html":[9,0,118,452],
+"cpp/io/c/tmpnam.html":[9,0,118,453],
+"cpp/io/c/ungetc.html":[9,0,118,469],
+"cpp/io/c/ungetwc.html":[9,0,118,470],
+"cpp/io/c/vfprintf.html":[9,0,118,481],
+"cpp/io/c/vfprintf.html":[9,0,118,485],
+"cpp/io/c/vfprintf.html":[9,0,118,487],
+"cpp/io/c/vfprintf.html":[9,0,118,488],
+"cpp/io/c/vfscanf.html":[9,0,118,482],
+"cpp/io/c/vfscanf.html":[9,0,118,486],
+"cpp/io/c/vfscanf.html":[9,0,118,489],
+"cpp/io/c/vfwprintf.html":[9,0,118,483],
+"cpp/io/c/vfwprintf.html":[9,0,118,490],
+"cpp/io/c/vfwprintf.html":[9,0,118,492],
+"cpp/io/c/vfwscanf.html":[9,0,118,484],
+"cpp/io/c/vfwscanf.html":[9,0,118,491],
+"cpp/io/c/vfwscanf.html":[9,0,118,493],
+"cpp/io/manip/boolalpha.html":[9,0,118,67],
+"cpp/io/manip/boolalpha.html":[9,0,118,299],
+"cpp/io/manip/endl.html":[9,0,118,101],
+"cpp/io/manip/ends.html":[9,0,118,102],
+"cpp/io/manip/fixed.html":[9,0,118,95],
+"cpp/io/manip/fixed.html":[9,0,118,140],
+"cpp/io/manip/fixed.html":[9,0,118,190],
+"cpp/io/manip/fixed.html":[9,0,118,367],
+"cpp/io/manip/flush.html":[9,0,118,142],
+"cpp/io/manip/get_money.html":[9,0,118,174],
+"cpp/io/manip/get_time.html":[9,0,118,179],
+"cpp/io/manip/hex.html":[9,0,118,91],
+"cpp/io/manip/hex.html":[9,0,118,189],
+"cpp/io/manip/hex.html":[9,0,118,311],
+"cpp/io/manip/left.html":[9,0,118,197],
+"cpp/io/manip/left.html":[9,0,118,239],
+"cpp/io/manip/left.html":[9,0,118,359],
+"cpp/io/manip/put_money.html":[9,0,118,325],
+"cpp/io/manip/put_time.html":[9,0,118,326],
+"cpp/io/manip/resetiosflags.html":[9,0,118,352],
+"cpp/io/manip/setbase.html":[9,0,118,377],
+"cpp/io/manip/setfill.html":[9,0,118,379],
+"cpp/io/manip/setiosflags.html":[9,0,118,380],
+"cpp/io/manip/setprecision.html":[9,0,118,382],
+"cpp/io/manip/setw.html":[9,0,118,384],
+"cpp/io/manip/showbase.html":[9,0,118,301],
+"cpp/io/manip/showbase.html":[9,0,118,385],
+"cpp/io/manip/showpoint.html":[9,0,118,302],
+"cpp/io/manip/showpoint.html":[9,0,118,386],
+"cpp/io/manip/showpos.html":[9,0,118,303],
+"cpp/io/manip/showpos.html":[9,0,118,387],
+"cpp/io/manip/skipws.html":[9,0,118,304],
+"cpp/io/manip/skipws.html":[9,0,118,393],
+"cpp/io/manip/unitbuf.html":[9,0,118,308],
+"cpp/io/manip/unitbuf.html":[9,0,118,477],
+"cpp/io/manip/uppercase.html":[9,0,118,309],
+"cpp/io/manip/uppercase.html":[9,0,118,479],
+"cpp/io/manip/ws.html":[9,0,118,532],
+"cpp/iterator/advance.html":[9,0,118,21],
+"cpp/iterator/back_inserter.html":[9,0,118,63],
+"cpp/iterator/begin.html":[9,0,118,64]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 622063ee8..1be19fb22 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,253 +1,253 @@
var NAVTREEINDEX1 =
{
-"cpp/iterator/distance.html":[9,0,117,97],
-"cpp/iterator/end.html":[9,0,117,100],
-"cpp/iterator/front_inserter.html":[9,0,117,161],
-"cpp/iterator/inserter.html":[9,0,117,196],
-"cpp/iterator/make_move_iterator.html":[9,0,117,258],
-"cpp/iterator/next.html":[9,0,117,295],
-"cpp/iterator/prev.html":[9,0,117,321],
-"cpp/locale/has_facet.html":[9,0,117,188],
-"cpp/locale/localeconv.html":[9,0,117,245],
-"cpp/locale/setlocale.html":[9,0,117,381],
-"cpp/locale/use_facet.html":[9,0,117,480],
-"cpp/memory/addressof.html":[9,0,117,18],
-"cpp/memory/align.html":[9,0,117,22],
-"cpp/memory/c/calloc.html":[9,0,117,73],
-"cpp/memory/c/free.html":[9,0,117,158],
-"cpp/memory/c/malloc.html":[9,0,117,262],
-"cpp/memory/c/realloc.html":[9,0,117,336],
-"cpp/memory/gc/declare_no_pointers.html":[9,0,117,92],
-"cpp/memory/gc/declare_reachable.html":[9,0,117,93],
-"cpp/memory/gc/get_pointer_safety.html":[9,0,117,176],
-"cpp/memory/gc/undeclare_no_pointers.html":[9,0,117,466],
-"cpp/memory/gc/undeclare_reachable.html":[9,0,117,467],
-"cpp/memory/get_temporary_buffer.html":[9,0,117,177],
-"cpp/memory/new/get_new_handler.html":[9,0,117,175],
-"cpp/memory/new/set_new_handler.html":[9,0,117,372],
-"cpp/memory/return_temporary_buffer.html":[9,0,117,355],
-"cpp/memory/shared_ptr/allocate_shared.html":[9,0,117,24],
-"cpp/memory/shared_ptr/make_shared.html":[9,0,117,260],
-"cpp/memory/shared_ptr/pointer_cast.html":[9,0,117,78],
-"cpp/memory/shared_ptr/pointer_cast.html":[9,0,117,99],
-"cpp/memory/shared_ptr/pointer_cast.html":[9,0,117,403],
-"cpp/memory/uninitialized_copy.html":[9,0,117,471],
-"cpp/memory/uninitialized_copy_n.html":[9,0,117,472],
-"cpp/memory/uninitialized_fill.html":[9,0,117,473],
-"cpp/memory/uninitialized_fill_n.html":[9,0,117,474],
-"cpp/numeric/fenv/feclearexcept.html":[9,0,117,114],
-"cpp/numeric/fenv/feenv.html":[9,0,117,115],
-"cpp/numeric/fenv/feenv.html":[9,0,117,122],
-"cpp/numeric/fenv/feexceptflag.html":[9,0,117,116],
-"cpp/numeric/fenv/feexceptflag.html":[9,0,117,123],
-"cpp/numeric/fenv/feholdexcept.html":[9,0,117,118],
-"cpp/numeric/fenv/feraiseexcept.html":[9,0,117,120],
-"cpp/numeric/fenv/feround.html":[9,0,117,117],
-"cpp/numeric/fenv/feround.html":[9,0,117,124],
-"cpp/numeric/fenv/fetestexcept.html":[9,0,117,125],
-"cpp/numeric/fenv/feupdateenv.html":[9,0,117,126],
-"cpp/numeric/math/abs.html":[9,0,117,14],
-"cpp/numeric/math/abs.html":[9,0,117,236],
-"cpp/numeric/math/abs.html":[9,0,117,242],
-"cpp/numeric/math/acos.html":[9,0,117,16],
-"cpp/numeric/math/acosh.html":[9,0,117,17],
-"cpp/numeric/math/asin.html":[9,0,117,27],
-"cpp/numeric/math/asinh.html":[9,0,117,28],
-"cpp/numeric/math/atan.html":[9,0,117,31],
-"cpp/numeric/math/atan2.html":[9,0,117,32],
-"cpp/numeric/math/atanh.html":[9,0,117,33],
-"cpp/numeric/math/cbrt.html":[9,0,117,74],
-"cpp/numeric/math/ceil.html":[9,0,117,75],
-"cpp/numeric/math/copysign.html":[9,0,117,83],
-"cpp/numeric/math/cos.html":[9,0,117,84],
-"cpp/numeric/math/cosh.html":[9,0,117,85],
-"cpp/numeric/math/div.html":[9,0,117,98],
-"cpp/numeric/math/div.html":[9,0,117,238],
-"cpp/numeric/math/erf.html":[9,0,117,105],
-"cpp/numeric/math/erfc.html":[9,0,117,106],
-"cpp/numeric/math/exp.html":[9,0,117,108],
-"cpp/numeric/math/exp2.html":[9,0,117,109],
-"cpp/numeric/math/expm1.html":[9,0,117,110],
-"cpp/numeric/math/fabs.html":[9,0,117,13],
-"cpp/numeric/math/fabs.html":[9,0,117,111],
-"cpp/numeric/math/fdim.html":[9,0,117,113],
-"cpp/numeric/math/floor.html":[9,0,117,141],
-"cpp/numeric/math/fma.html":[9,0,117,143],
-"cpp/numeric/math/fmax.html":[9,0,117,144],
-"cpp/numeric/math/fmin.html":[9,0,117,145],
-"cpp/numeric/math/fmod.html":[9,0,117,146],
-"cpp/numeric/math/fpclassify.html":[9,0,117,151],
-"cpp/numeric/math/frexp.html":[9,0,117,160],
-"cpp/numeric/math/hypot.html":[9,0,117,191],
-"cpp/numeric/math/ilogb.html":[9,0,117,192],
-"cpp/numeric/math/isfinite.html":[9,0,117,210],
-"cpp/numeric/math/isinf.html":[9,0,117,212],
-"cpp/numeric/math/isnan.html":[9,0,117,214],
-"cpp/numeric/math/isnormal.html":[9,0,117,215],
-"cpp/numeric/math/ldexp.html":[9,0,117,237],
-"cpp/numeric/math/lgamma.html":[9,0,117,241],
-"cpp/numeric/math/log.html":[9,0,117,248],
-"cpp/numeric/math/log10.html":[9,0,117,249],
-"cpp/numeric/math/log1p.html":[9,0,117,250],
-"cpp/numeric/math/logb.html":[9,0,117,251],
-"cpp/numeric/math/modf.html":[9,0,117,287],
-"cpp/numeric/math/nan.html":[9,0,117,291],
-"cpp/numeric/math/nan.html":[9,0,117,292],
-"cpp/numeric/math/nan.html":[9,0,117,293],
-"cpp/numeric/math/nearbyint.html":[9,0,117,294],
-"cpp/numeric/math/nextafter.html":[9,0,117,297],
-"cpp/numeric/math/nextafter.html":[9,0,117,298],
-"cpp/numeric/math/pow.html":[9,0,117,320],
-"cpp/numeric/math/remainder.html":[9,0,117,341],
-"cpp/numeric/math/remquo.html":[9,0,117,346],
-"cpp/numeric/math/rint.html":[9,0,117,243],
-"cpp/numeric/math/rint.html":[9,0,117,254],
-"cpp/numeric/math/rint.html":[9,0,117,360],
-"cpp/numeric/math/round.html":[9,0,117,244],
-"cpp/numeric/math/round.html":[9,0,117,255],
-"cpp/numeric/math/round.html":[9,0,117,363],
-"cpp/numeric/math/scalbn.html":[9,0,117,364],
-"cpp/numeric/math/scalbn.html":[9,0,117,365],
-"cpp/numeric/math/signbit.html":[9,0,117,390],
-"cpp/numeric/math/sin.html":[9,0,117,391],
-"cpp/numeric/math/sinh.html":[9,0,117,392],
-"cpp/numeric/math/sqrt.html":[9,0,117,398],
-"cpp/numeric/math/tan.html":[9,0,117,445],
-"cpp/numeric/math/tanh.html":[9,0,117,446],
-"cpp/numeric/math/tgamma.html":[9,0,117,448],
-"cpp/numeric/math/trunc.html":[9,0,117,462],
-"cpp/numeric/random/generate_canonical.html":[9,0,117,171],
-"cpp/numeric/random/rand.html":[9,0,117,334],
-"cpp/numeric/random/srand.html":[9,0,117,399],
-"cpp/regex/regex_match.html":[9,0,117,338],
-"cpp/regex/regex_replace.html":[9,0,117,339],
-"cpp/regex/regex_search.html":[9,0,117,340],
-"cpp/string/basic_string/getline.html":[9,0,117,184],
-"cpp/string/basic_string/stof.html":[9,0,117,404],
-"cpp/string/basic_string/stof.html":[9,0,117,405],
-"cpp/string/basic_string/stof.html":[9,0,117,408],
-"cpp/string/basic_string/stol.html":[9,0,117,406],
-"cpp/string/basic_string/stol.html":[9,0,117,407],
-"cpp/string/basic_string/stol.html":[9,0,117,409],
-"cpp/string/basic_string/stoul.html":[9,0,117,410],
-"cpp/string/basic_string/stoul.html":[9,0,117,411],
-"cpp/string/basic_string/to_string.html":[9,0,117,454],
-"cpp/string/basic_string/to_wstring.html":[9,0,117,455],
-"cpp/string/byte/atof.html":[9,0,117,35],
-"cpp/string/byte/atoi.html":[9,0,117,36],
-"cpp/string/byte/atoi.html":[9,0,117,37],
-"cpp/string/byte/atoi.html":[9,0,117,38],
-"cpp/string/byte/isalnum.html":[9,0,117,205],
-"cpp/string/byte/isalpha.html":[9,0,117,206],
-"cpp/string/byte/isblank.html":[9,0,117,207],
-"cpp/string/byte/iscntrl.html":[9,0,117,208],
-"cpp/string/byte/isdigit.html":[9,0,117,209],
-"cpp/string/byte/isgraph.html":[9,0,117,211],
-"cpp/string/byte/islower.html":[9,0,117,213],
-"cpp/string/byte/isprint.html":[9,0,117,216],
-"cpp/string/byte/ispunct.html":[9,0,117,217],
-"cpp/string/byte/isspace.html":[9,0,117,218],
-"cpp/string/byte/isupper.html":[9,0,117,219],
-"cpp/string/byte/isxdigit.html":[9,0,117,233],
-"cpp/string/byte/memchr.html":[9,0,117,275],
-"cpp/string/byte/memcmp.html":[9,0,117,276],
-"cpp/string/byte/memcpy.html":[9,0,117,277],
-"cpp/string/byte/memmove.html":[9,0,117,278],
-"cpp/string/byte/memset.html":[9,0,117,279],
-"cpp/string/byte/strcat.html":[9,0,117,412],
-"cpp/string/byte/strchr.html":[9,0,117,413],
-"cpp/string/byte/strcmp.html":[9,0,117,414],
-"cpp/string/byte/strcoll.html":[9,0,117,415],
-"cpp/string/byte/strcpy.html":[9,0,117,416],
-"cpp/string/byte/strcspn.html":[9,0,117,417],
-"cpp/string/byte/strerror.html":[9,0,117,418],
-"cpp/string/byte/strlen.html":[9,0,117,420],
-"cpp/string/byte/strncat.html":[9,0,117,421],
-"cpp/string/byte/strncmp.html":[9,0,117,422],
-"cpp/string/byte/strncpy.html":[9,0,117,423],
-"cpp/string/byte/strpbrk.html":[9,0,117,424],
-"cpp/string/byte/strrchr.html":[9,0,117,425],
-"cpp/string/byte/strspn.html":[9,0,117,426],
-"cpp/string/byte/strstr.html":[9,0,117,427],
-"cpp/string/byte/strtof.html":[9,0,117,428],
-"cpp/string/byte/strtof.html":[9,0,117,429],
-"cpp/string/byte/strtof.html":[9,0,117,433],
-"cpp/string/byte/strtoimax.html":[9,0,117,430],
-"cpp/string/byte/strtoimax.html":[9,0,117,437],
-"cpp/string/byte/strtok.html":[9,0,117,431],
-"cpp/string/byte/strtol.html":[9,0,117,432],
-"cpp/string/byte/strtol.html":[9,0,117,434],
-"cpp/string/byte/strtoul.html":[9,0,117,435],
-"cpp/string/byte/strtoul.html":[9,0,117,436],
-"cpp/string/byte/strxfrm.html":[9,0,117,438],
-"cpp/string/byte/tolower.html":[9,0,117,456],
-"cpp/string/byte/toupper.html":[9,0,117,457],
-"cpp/string/multibyte/btowc.html":[9,0,117,69],
-"cpp/string/multibyte/c16rtomb.html":[9,0,117,70],
-"cpp/string/multibyte/c32rtomb.html":[9,0,117,71],
-"cpp/string/multibyte/mblen.html":[9,0,117,265],
-"cpp/string/multibyte/mbrlen.html":[9,0,117,266],
-"cpp/string/multibyte/mbrtoc16.html":[9,0,117,267],
-"cpp/string/multibyte/mbrtoc32.html":[9,0,117,268],
-"cpp/string/multibyte/mbrtowc.html":[9,0,117,269],
-"cpp/string/multibyte/mbsinit.html":[9,0,117,270],
-"cpp/string/multibyte/mbsrtowcs.html":[9,0,117,271],
-"cpp/string/multibyte/mbstowcs.html":[9,0,117,272],
-"cpp/string/multibyte/mbtowc.html":[9,0,117,273],
-"cpp/string/multibyte/wcrtomb.html":[9,0,117,494],
-"cpp/string/multibyte/wcstombs.html":[9,0,117,517],
-"cpp/string/multibyte/wctob.html":[9,0,117,522],
-"cpp/string/multibyte/wctomb.html":[9,0,117,523],
-"cpp/string/wide/iswalnum.html":[9,0,117,220],
-"cpp/string/wide/iswalpha.html":[9,0,117,221],
-"cpp/string/wide/iswblank.html":[9,0,117,222],
-"cpp/string/wide/iswcntrl.html":[9,0,117,223],
-"cpp/string/wide/iswctype.html":[9,0,117,224],
-"cpp/string/wide/iswdigit.html":[9,0,117,225],
-"cpp/string/wide/iswgraph.html":[9,0,117,226],
-"cpp/string/wide/iswlower.html":[9,0,117,227],
-"cpp/string/wide/iswprint.html":[9,0,117,228],
-"cpp/string/wide/iswpunct.html":[9,0,117,229],
-"cpp/string/wide/iswspace.html":[9,0,117,230],
-"cpp/string/wide/iswupper.html":[9,0,117,231],
-"cpp/string/wide/iswxdigit.html":[9,0,117,232],
-"cpp/string/wide/towctrans.html":[9,0,117,458],
-"cpp/string/wide/towlower.html":[9,0,117,459],
-"cpp/string/wide/towupper.html":[9,0,117,460],
-"cpp/string/wide/wcscat.html":[9,0,117,495],
-"cpp/string/wide/wcschr.html":[9,0,117,496],
-"cpp/string/wide/wcscmp.html":[9,0,117,497],
-"cpp/string/wide/wcscoll.html":[9,0,117,498],
-"cpp/string/wide/wcscpy.html":[9,0,117,499],
-"cpp/string/wide/wcscspn.html":[9,0,117,500],
-"cpp/string/wide/wcslen.html":[9,0,117,502],
-"cpp/string/wide/wcsncat.html":[9,0,117,503],
-"cpp/string/wide/wcsncmp.html":[9,0,117,504],
-"cpp/string/wide/wcsncpy.html":[9,0,117,505],
-"cpp/string/wide/wcspbrk.html":[9,0,117,506],
-"cpp/string/wide/wcsrchr.html":[9,0,117,507],
-"cpp/string/wide/wcsspn.html":[9,0,117,508],
-"cpp/string/wide/wcsstr.html":[9,0,117,509],
-"cpp/string/wide/wcstof.html":[9,0,117,510],
-"cpp/string/wide/wcstof.html":[9,0,117,511],
-"cpp/string/wide/wcstof.html":[9,0,117,515],
-"cpp/string/wide/wcstoimax.html":[9,0,117,512],
-"cpp/string/wide/wcstoimax.html":[9,0,117,520],
-"cpp/string/wide/wcstok.html":[9,0,117,513],
-"cpp/string/wide/wcstol.html":[9,0,117,514],
-"cpp/string/wide/wcstol.html":[9,0,117,516],
-"cpp/string/wide/wcstoul.html":[9,0,117,518],
-"cpp/string/wide/wcstoul.html":[9,0,117,519],
-"cpp/string/wide/wcsxfrm.html":[9,0,117,521],
-"cpp/string/wide/wctrans.html":[9,0,117,524],
-"cpp/string/wide/wctype.html":[9,0,117,525],
-"cpp/string/wide/wmemchr.html":[9,0,117,526],
-"cpp/string/wide/wmemcmp.html":[9,0,117,527],
-"cpp/string/wide/wmemcpy.html":[9,0,117,528],
-"cpp/string/wide/wmemmove.html":[9,0,117,529],
-"cpp/string/wide/wmemset.html":[9,0,117,530],
-"cpp/thread/async.html":[9,0,117,29],
-"cpp/thread/call_once.html":[9,0,117,72],
-"cpp/thread/future/future_category.html":[9,0,117,166],
-"cpp/thread/get_id.html":[9,0,117,4,0]
+"cpp/iterator/distance.html":[9,0,118,97],
+"cpp/iterator/end.html":[9,0,118,100],
+"cpp/iterator/front_inserter.html":[9,0,118,161],
+"cpp/iterator/inserter.html":[9,0,118,196],
+"cpp/iterator/make_move_iterator.html":[9,0,118,258],
+"cpp/iterator/next.html":[9,0,118,295],
+"cpp/iterator/prev.html":[9,0,118,321],
+"cpp/locale/has_facet.html":[9,0,118,188],
+"cpp/locale/localeconv.html":[9,0,118,245],
+"cpp/locale/setlocale.html":[9,0,118,381],
+"cpp/locale/use_facet.html":[9,0,118,480],
+"cpp/memory/addressof.html":[9,0,118,18],
+"cpp/memory/align.html":[9,0,118,22],
+"cpp/memory/c/calloc.html":[9,0,118,73],
+"cpp/memory/c/free.html":[9,0,118,158],
+"cpp/memory/c/malloc.html":[9,0,118,262],
+"cpp/memory/c/realloc.html":[9,0,118,336],
+"cpp/memory/gc/declare_no_pointers.html":[9,0,118,92],
+"cpp/memory/gc/declare_reachable.html":[9,0,118,93],
+"cpp/memory/gc/get_pointer_safety.html":[9,0,118,176],
+"cpp/memory/gc/undeclare_no_pointers.html":[9,0,118,466],
+"cpp/memory/gc/undeclare_reachable.html":[9,0,118,467],
+"cpp/memory/get_temporary_buffer.html":[9,0,118,177],
+"cpp/memory/new/get_new_handler.html":[9,0,118,175],
+"cpp/memory/new/set_new_handler.html":[9,0,118,372],
+"cpp/memory/return_temporary_buffer.html":[9,0,118,355],
+"cpp/memory/shared_ptr/allocate_shared.html":[9,0,118,24],
+"cpp/memory/shared_ptr/make_shared.html":[9,0,118,260],
+"cpp/memory/shared_ptr/pointer_cast.html":[9,0,118,78],
+"cpp/memory/shared_ptr/pointer_cast.html":[9,0,118,99],
+"cpp/memory/shared_ptr/pointer_cast.html":[9,0,118,403],
+"cpp/memory/uninitialized_copy.html":[9,0,118,471],
+"cpp/memory/uninitialized_copy_n.html":[9,0,118,472],
+"cpp/memory/uninitialized_fill.html":[9,0,118,473],
+"cpp/memory/uninitialized_fill_n.html":[9,0,118,474],
+"cpp/numeric/fenv/feclearexcept.html":[9,0,118,114],
+"cpp/numeric/fenv/feenv.html":[9,0,118,115],
+"cpp/numeric/fenv/feenv.html":[9,0,118,122],
+"cpp/numeric/fenv/feexceptflag.html":[9,0,118,116],
+"cpp/numeric/fenv/feexceptflag.html":[9,0,118,123],
+"cpp/numeric/fenv/feholdexcept.html":[9,0,118,118],
+"cpp/numeric/fenv/feraiseexcept.html":[9,0,118,120],
+"cpp/numeric/fenv/feround.html":[9,0,118,117],
+"cpp/numeric/fenv/feround.html":[9,0,118,124],
+"cpp/numeric/fenv/fetestexcept.html":[9,0,118,125],
+"cpp/numeric/fenv/feupdateenv.html":[9,0,118,126],
+"cpp/numeric/math/abs.html":[9,0,118,14],
+"cpp/numeric/math/abs.html":[9,0,118,236],
+"cpp/numeric/math/abs.html":[9,0,118,242],
+"cpp/numeric/math/acos.html":[9,0,118,16],
+"cpp/numeric/math/acosh.html":[9,0,118,17],
+"cpp/numeric/math/asin.html":[9,0,118,27],
+"cpp/numeric/math/asinh.html":[9,0,118,28],
+"cpp/numeric/math/atan.html":[9,0,118,31],
+"cpp/numeric/math/atan2.html":[9,0,118,32],
+"cpp/numeric/math/atanh.html":[9,0,118,33],
+"cpp/numeric/math/cbrt.html":[9,0,118,74],
+"cpp/numeric/math/ceil.html":[9,0,118,75],
+"cpp/numeric/math/copysign.html":[9,0,118,83],
+"cpp/numeric/math/cos.html":[9,0,118,84],
+"cpp/numeric/math/cosh.html":[9,0,118,85],
+"cpp/numeric/math/div.html":[9,0,118,98],
+"cpp/numeric/math/div.html":[9,0,118,238],
+"cpp/numeric/math/erf.html":[9,0,118,105],
+"cpp/numeric/math/erfc.html":[9,0,118,106],
+"cpp/numeric/math/exp.html":[9,0,118,108],
+"cpp/numeric/math/exp2.html":[9,0,118,109],
+"cpp/numeric/math/expm1.html":[9,0,118,110],
+"cpp/numeric/math/fabs.html":[9,0,118,13],
+"cpp/numeric/math/fabs.html":[9,0,118,111],
+"cpp/numeric/math/fdim.html":[9,0,118,113],
+"cpp/numeric/math/floor.html":[9,0,118,141],
+"cpp/numeric/math/fma.html":[9,0,118,143],
+"cpp/numeric/math/fmax.html":[9,0,118,144],
+"cpp/numeric/math/fmin.html":[9,0,118,145],
+"cpp/numeric/math/fmod.html":[9,0,118,146],
+"cpp/numeric/math/fpclassify.html":[9,0,118,151],
+"cpp/numeric/math/frexp.html":[9,0,118,160],
+"cpp/numeric/math/hypot.html":[9,0,118,191],
+"cpp/numeric/math/ilogb.html":[9,0,118,192],
+"cpp/numeric/math/isfinite.html":[9,0,118,210],
+"cpp/numeric/math/isinf.html":[9,0,118,212],
+"cpp/numeric/math/isnan.html":[9,0,118,214],
+"cpp/numeric/math/isnormal.html":[9,0,118,215],
+"cpp/numeric/math/ldexp.html":[9,0,118,237],
+"cpp/numeric/math/lgamma.html":[9,0,118,241],
+"cpp/numeric/math/log.html":[9,0,118,248],
+"cpp/numeric/math/log10.html":[9,0,118,249],
+"cpp/numeric/math/log1p.html":[9,0,118,250],
+"cpp/numeric/math/logb.html":[9,0,118,251],
+"cpp/numeric/math/modf.html":[9,0,118,287],
+"cpp/numeric/math/nan.html":[9,0,118,291],
+"cpp/numeric/math/nan.html":[9,0,118,292],
+"cpp/numeric/math/nan.html":[9,0,118,293],
+"cpp/numeric/math/nearbyint.html":[9,0,118,294],
+"cpp/numeric/math/nextafter.html":[9,0,118,297],
+"cpp/numeric/math/nextafter.html":[9,0,118,298],
+"cpp/numeric/math/pow.html":[9,0,118,320],
+"cpp/numeric/math/remainder.html":[9,0,118,341],
+"cpp/numeric/math/remquo.html":[9,0,118,346],
+"cpp/numeric/math/rint.html":[9,0,118,243],
+"cpp/numeric/math/rint.html":[9,0,118,254],
+"cpp/numeric/math/rint.html":[9,0,118,360],
+"cpp/numeric/math/round.html":[9,0,118,244],
+"cpp/numeric/math/round.html":[9,0,118,255],
+"cpp/numeric/math/round.html":[9,0,118,363],
+"cpp/numeric/math/scalbn.html":[9,0,118,364],
+"cpp/numeric/math/scalbn.html":[9,0,118,365],
+"cpp/numeric/math/signbit.html":[9,0,118,390],
+"cpp/numeric/math/sin.html":[9,0,118,391],
+"cpp/numeric/math/sinh.html":[9,0,118,392],
+"cpp/numeric/math/sqrt.html":[9,0,118,398],
+"cpp/numeric/math/tan.html":[9,0,118,445],
+"cpp/numeric/math/tanh.html":[9,0,118,446],
+"cpp/numeric/math/tgamma.html":[9,0,118,448],
+"cpp/numeric/math/trunc.html":[9,0,118,462],
+"cpp/numeric/random/generate_canonical.html":[9,0,118,171],
+"cpp/numeric/random/rand.html":[9,0,118,334],
+"cpp/numeric/random/srand.html":[9,0,118,399],
+"cpp/regex/regex_match.html":[9,0,118,338],
+"cpp/regex/regex_replace.html":[9,0,118,339],
+"cpp/regex/regex_search.html":[9,0,118,340],
+"cpp/string/basic_string/getline.html":[9,0,118,184],
+"cpp/string/basic_string/stof.html":[9,0,118,404],
+"cpp/string/basic_string/stof.html":[9,0,118,405],
+"cpp/string/basic_string/stof.html":[9,0,118,408],
+"cpp/string/basic_string/stol.html":[9,0,118,406],
+"cpp/string/basic_string/stol.html":[9,0,118,407],
+"cpp/string/basic_string/stol.html":[9,0,118,409],
+"cpp/string/basic_string/stoul.html":[9,0,118,410],
+"cpp/string/basic_string/stoul.html":[9,0,118,411],
+"cpp/string/basic_string/to_string.html":[9,0,118,454],
+"cpp/string/basic_string/to_wstring.html":[9,0,118,455],
+"cpp/string/byte/atof.html":[9,0,118,35],
+"cpp/string/byte/atoi.html":[9,0,118,36],
+"cpp/string/byte/atoi.html":[9,0,118,37],
+"cpp/string/byte/atoi.html":[9,0,118,38],
+"cpp/string/byte/isalnum.html":[9,0,118,205],
+"cpp/string/byte/isalpha.html":[9,0,118,206],
+"cpp/string/byte/isblank.html":[9,0,118,207],
+"cpp/string/byte/iscntrl.html":[9,0,118,208],
+"cpp/string/byte/isdigit.html":[9,0,118,209],
+"cpp/string/byte/isgraph.html":[9,0,118,211],
+"cpp/string/byte/islower.html":[9,0,118,213],
+"cpp/string/byte/isprint.html":[9,0,118,216],
+"cpp/string/byte/ispunct.html":[9,0,118,217],
+"cpp/string/byte/isspace.html":[9,0,118,218],
+"cpp/string/byte/isupper.html":[9,0,118,219],
+"cpp/string/byte/isxdigit.html":[9,0,118,233],
+"cpp/string/byte/memchr.html":[9,0,118,275],
+"cpp/string/byte/memcmp.html":[9,0,118,276],
+"cpp/string/byte/memcpy.html":[9,0,118,277],
+"cpp/string/byte/memmove.html":[9,0,118,278],
+"cpp/string/byte/memset.html":[9,0,118,279],
+"cpp/string/byte/strcat.html":[9,0,118,412],
+"cpp/string/byte/strchr.html":[9,0,118,413],
+"cpp/string/byte/strcmp.html":[9,0,118,414],
+"cpp/string/byte/strcoll.html":[9,0,118,415],
+"cpp/string/byte/strcpy.html":[9,0,118,416],
+"cpp/string/byte/strcspn.html":[9,0,118,417],
+"cpp/string/byte/strerror.html":[9,0,118,418],
+"cpp/string/byte/strlen.html":[9,0,118,420],
+"cpp/string/byte/strncat.html":[9,0,118,421],
+"cpp/string/byte/strncmp.html":[9,0,118,422],
+"cpp/string/byte/strncpy.html":[9,0,118,423],
+"cpp/string/byte/strpbrk.html":[9,0,118,424],
+"cpp/string/byte/strrchr.html":[9,0,118,425],
+"cpp/string/byte/strspn.html":[9,0,118,426],
+"cpp/string/byte/strstr.html":[9,0,118,427],
+"cpp/string/byte/strtof.html":[9,0,118,428],
+"cpp/string/byte/strtof.html":[9,0,118,429],
+"cpp/string/byte/strtof.html":[9,0,118,433],
+"cpp/string/byte/strtoimax.html":[9,0,118,430],
+"cpp/string/byte/strtoimax.html":[9,0,118,437],
+"cpp/string/byte/strtok.html":[9,0,118,431],
+"cpp/string/byte/strtol.html":[9,0,118,432],
+"cpp/string/byte/strtol.html":[9,0,118,434],
+"cpp/string/byte/strtoul.html":[9,0,118,435],
+"cpp/string/byte/strtoul.html":[9,0,118,436],
+"cpp/string/byte/strxfrm.html":[9,0,118,438],
+"cpp/string/byte/tolower.html":[9,0,118,456],
+"cpp/string/byte/toupper.html":[9,0,118,457],
+"cpp/string/multibyte/btowc.html":[9,0,118,69],
+"cpp/string/multibyte/c16rtomb.html":[9,0,118,70],
+"cpp/string/multibyte/c32rtomb.html":[9,0,118,71],
+"cpp/string/multibyte/mblen.html":[9,0,118,265],
+"cpp/string/multibyte/mbrlen.html":[9,0,118,266],
+"cpp/string/multibyte/mbrtoc16.html":[9,0,118,267],
+"cpp/string/multibyte/mbrtoc32.html":[9,0,118,268],
+"cpp/string/multibyte/mbrtowc.html":[9,0,118,269],
+"cpp/string/multibyte/mbsinit.html":[9,0,118,270],
+"cpp/string/multibyte/mbsrtowcs.html":[9,0,118,271],
+"cpp/string/multibyte/mbstowcs.html":[9,0,118,272],
+"cpp/string/multibyte/mbtowc.html":[9,0,118,273],
+"cpp/string/multibyte/wcrtomb.html":[9,0,118,494],
+"cpp/string/multibyte/wcstombs.html":[9,0,118,517],
+"cpp/string/multibyte/wctob.html":[9,0,118,522],
+"cpp/string/multibyte/wctomb.html":[9,0,118,523],
+"cpp/string/wide/iswalnum.html":[9,0,118,220],
+"cpp/string/wide/iswalpha.html":[9,0,118,221],
+"cpp/string/wide/iswblank.html":[9,0,118,222],
+"cpp/string/wide/iswcntrl.html":[9,0,118,223],
+"cpp/string/wide/iswctype.html":[9,0,118,224],
+"cpp/string/wide/iswdigit.html":[9,0,118,225],
+"cpp/string/wide/iswgraph.html":[9,0,118,226],
+"cpp/string/wide/iswlower.html":[9,0,118,227],
+"cpp/string/wide/iswprint.html":[9,0,118,228],
+"cpp/string/wide/iswpunct.html":[9,0,118,229],
+"cpp/string/wide/iswspace.html":[9,0,118,230],
+"cpp/string/wide/iswupper.html":[9,0,118,231],
+"cpp/string/wide/iswxdigit.html":[9,0,118,232],
+"cpp/string/wide/towctrans.html":[9,0,118,458],
+"cpp/string/wide/towlower.html":[9,0,118,459],
+"cpp/string/wide/towupper.html":[9,0,118,460],
+"cpp/string/wide/wcscat.html":[9,0,118,495],
+"cpp/string/wide/wcschr.html":[9,0,118,496],
+"cpp/string/wide/wcscmp.html":[9,0,118,497],
+"cpp/string/wide/wcscoll.html":[9,0,118,498],
+"cpp/string/wide/wcscpy.html":[9,0,118,499],
+"cpp/string/wide/wcscspn.html":[9,0,118,500],
+"cpp/string/wide/wcslen.html":[9,0,118,502],
+"cpp/string/wide/wcsncat.html":[9,0,118,503],
+"cpp/string/wide/wcsncmp.html":[9,0,118,504],
+"cpp/string/wide/wcsncpy.html":[9,0,118,505],
+"cpp/string/wide/wcspbrk.html":[9,0,118,506],
+"cpp/string/wide/wcsrchr.html":[9,0,118,507],
+"cpp/string/wide/wcsspn.html":[9,0,118,508],
+"cpp/string/wide/wcsstr.html":[9,0,118,509],
+"cpp/string/wide/wcstof.html":[9,0,118,510],
+"cpp/string/wide/wcstof.html":[9,0,118,511],
+"cpp/string/wide/wcstof.html":[9,0,118,515],
+"cpp/string/wide/wcstoimax.html":[9,0,118,512],
+"cpp/string/wide/wcstoimax.html":[9,0,118,520],
+"cpp/string/wide/wcstok.html":[9,0,118,513],
+"cpp/string/wide/wcstol.html":[9,0,118,514],
+"cpp/string/wide/wcstol.html":[9,0,118,516],
+"cpp/string/wide/wcstoul.html":[9,0,118,518],
+"cpp/string/wide/wcstoul.html":[9,0,118,519],
+"cpp/string/wide/wcsxfrm.html":[9,0,118,521],
+"cpp/string/wide/wctrans.html":[9,0,118,524],
+"cpp/string/wide/wctype.html":[9,0,118,525],
+"cpp/string/wide/wmemchr.html":[9,0,118,526],
+"cpp/string/wide/wmemcmp.html":[9,0,118,527],
+"cpp/string/wide/wmemcpy.html":[9,0,118,528],
+"cpp/string/wide/wmemmove.html":[9,0,118,529],
+"cpp/string/wide/wmemset.html":[9,0,118,530],
+"cpp/thread/async.html":[9,0,118,29],
+"cpp/thread/call_once.html":[9,0,118,72],
+"cpp/thread/future/future_category.html":[9,0,118,166],
+"cpp/thread/get_id.html":[9,0,118,4,0]
};
diff --git a/navtreeindex10.js b/navtreeindex10.js
index 3e8af2b64..fbb3ccae0 100644
--- a/navtreeindex10.js
+++ b/navtreeindex10.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX10 =
{
+"d9/dde/classbinary__search__tree.html#ad9912e8574538e86f9bd2c38e7e63d03":[10,0,21,7],
"d9/dde/classbinary__search__tree.html#af4a865ce5244608819b169fc78a41153":[10,0,21,13],
"d9/dde/classbinary__search__tree.html#af9a2c7c187a7ca3142c77ce342ef3153":[10,0,21,6],
"d9/dde/structdouble__hashing_1_1_entry.html":[9,0,26,0],
@@ -9,17 +10,17 @@ var NAVTREEINDEX10 =
"d9/dde/structdouble__hashing_1_1_entry.html#ae114967c89dbba3b754dc4976bba3248":[9,0,26,0,1],
"d9/dde/structdouble__hashing_1_1_entry.html#ae114967c89dbba3b754dc4976bba3248":[10,0,4,0,1],
"d9/dee/classdouble__linked__list.html":[10,0,29],
-"d9/def/namespacesublist__search.html":[9,0,124],
+"d9/def/namespacesublist__search.html":[9,0,125],
"d9/df0/fast__integer__input_8cpp.html":[11,0,17,4],
"d9/df0/fast__integer__input_8cpp.html#a4e097ac8509b717bdc8ab09ecd86ae82":[11,0,17,4,0],
"d9/df0/fast__integer__input_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,4,1],
-"d9/df4/namespacetests.html":[9,0,128],
-"d9/df4/namespacetests.html#a167c24bd817469ae47358d12e034f2d5":[9,0,128,0],
-"d9/df4/namespacetests.html#a2b9769e44683dcb67fe1083ad91e134d":[9,0,128,3],
-"d9/df4/namespacetests.html#aa515639572647508b94986489aab6d76":[9,0,128,2],
-"d9/df4/namespacetests.html#aacafde185abd8670abee51157f273dc2":[9,0,128,5],
-"d9/df4/namespacetests.html#abdd77344d4af8fd56d14a5cabbf2f669":[9,0,128,1],
-"d9/df4/namespacetests.html#af7b81d7a1534216af6a36a80135beb86":[9,0,128,4],
+"d9/df4/namespacetests.html":[9,0,129],
+"d9/df4/namespacetests.html#a167c24bd817469ae47358d12e034f2d5":[9,0,129,0],
+"d9/df4/namespacetests.html#a2b9769e44683dcb67fe1083ad91e134d":[9,0,129,3],
+"d9/df4/namespacetests.html#aa515639572647508b94986489aab6d76":[9,0,129,2],
+"d9/df4/namespacetests.html#aacafde185abd8670abee51157f273dc2":[9,0,129,5],
+"d9/df4/namespacetests.html#abdd77344d4af8fd56d14a5cabbf2f669":[9,0,129,1],
+"d9/df4/namespacetests.html#af7b81d7a1534216af6a36a80135beb86":[9,0,129,4],
"d9/df7/structothers_1_1recursive__tree__traversals_1_1_node.html":[10,0,13,4,1],
"d9/df7/structothers_1_1recursive__tree__traversals_1_1_node.html#a59cc94ba784aeaefec2e915ddfdb1ade":[10,0,13,4,1,0],
"d9/df7/structothers_1_1recursive__tree__traversals_1_1_node.html#a5a8a7bc2d2f847994220ae9e0b60fff3":[10,0,13,4,1,1],
@@ -93,7 +94,7 @@ var NAVTREEINDEX10 =
"da/d41/uint128__t_8hpp.html#a3ff77262ffd6743df5b808d41382a6f3":[11,0,2,6,5],
"da/d41/uint128__t_8hpp.html#acce684d03a24f9c13a9ed36de6d24a57":[11,0,2,6,4],
"da/d41/uint128__t_8hpp_source.html":[11,0,2,6],
-"da/d42/namespacestd_1_1rel__ops.html":[9,0,117,3],
+"da/d42/namespacestd_1_1rel__ops.html":[9,0,118,3],
"da/d49/classgreedy__algorithms_1_1_digit_separation.html":[9,0,42,3],
"da/d49/classgreedy__algorithms_1_1_digit_separation.html":[10,0,7,2],
"da/d49/classgreedy__algorithms_1_1_digit_separation.html#a1809ae6828223999374bde5b197a59c8":[9,0,42,3,1],
@@ -220,9 +221,9 @@ var NAVTREEINDEX10 =
"da/dd3/karatsuba__algorithm__for__fast__multiplication_8cpp.html#aad9e3edfe156b59fc06a5585403fe0d6":[11,0,5,0,3],
"da/dd3/karatsuba__algorithm__for__fast__multiplication_8cpp.html#ad76f5cac3ef8dc034f6abb99b64c2b20":[11,0,5,0,0],
"da/dd3/karatsuba__algorithm__for__fast__multiplication_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,5,0,2],
-"da/dd3/namespacespirograph.html":[9,0,114],
-"da/dd3/namespacespirograph.html#a8e83a64e8443fff1e5ffdc1c299c1e99":[9,0,114,1],
-"da/dd3/namespacespirograph.html#aeca22dbe4563358960e907a40cd3e1ac":[9,0,114,0],
+"da/dd3/namespacespirograph.html":[9,0,115],
+"da/dd3/namespacespirograph.html#a8e83a64e8443fff1e5ffdc1c299c1e99":[9,0,115,1],
+"da/dd3/namespacespirograph.html#aeca22dbe4563358960e907a40cd3e1ac":[9,0,115,0],
"da/dd4/namespacemedian__search.html":[9,0,71],
"da/dda/namespaceradix__sort.html":[9,0,99],
"da/de7/decimal__to__hexadecimal_8cpp.html":[11,0,17,2],
@@ -244,10 +245,9 @@ var NAVTREEINDEX10 =
"db/d01/brent__method__extrema_8cpp.html#a6d0455dd5c30adda100e95f0423c786e":[11,0,15,2,6],
"db/d01/brent__method__extrema_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,15,2,3],
"db/d03/_s_t-example.html":[12,0],
-"db/d03/namespacewildcard__matching.html":[9,0,139],
+"db/d03/namespacewildcard__matching.html":[9,0,140],
"db/d07/spiral__print_8cpp.html":[11,0,17,22],
"db/d07/spiral__print_8cpp.html#a850d3f55e1a8d227176cdcc67352c197":[11,0,17,22,2],
"db/d07/spiral__print_8cpp.html#acfff36db81326fb990a643ab198ee8a5":[11,0,17,22,0],
-"db/d07/spiral__print_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,22,1],
-"db/d09/duval_8cpp.html":[11,0,23,2]
+"db/d07/spiral__print_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,22,1]
};
diff --git a/navtreeindex11.js b/navtreeindex11.js
index 01a5b64fe..2fe3878f8 100644
--- a/navtreeindex11.js
+++ b/navtreeindex11.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX11 =
{
+"db/d09/duval_8cpp.html":[11,0,23,2],
"db/d09/duval_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,23,2,2],
"db/d09/duval_8cpp.html#ac2a35302e6bed93c4b2c6f55a21a5632":[11,0,23,2,0],
"db/d09/duval_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,23,2,1],
@@ -180,7 +181,7 @@ var NAVTREEINDEX11 =
"db/d9f/iterative__factorial_8cpp.html#a2565c745aac2f9561cc6fd9e56d9b77a":[11,0,14,27,0],
"db/d9f/iterative__factorial_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,14,27,2],
"db/d9f/iterative__factorial_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,14,27,1],
-"db/da4/namespacestd_1_1regex__constants.html":[9,0,117,2],
+"db/da4/namespacestd_1_1regex__constants.html":[9,0,118,2],
"db/da9/classqueue.html":[10,0,50],
"db/da9/classqueue.html#a353e4dd5772575905c78b0b30856e368":[10,0,50,2],
"db/da9/classqueue.html#a386fc1df8610948d3117b12f24655c7d":[10,0,50,7],
@@ -248,6 +249,5 @@ var NAVTREEINDEX11 =
"dc/d1f/classcatalan__numbers.html":[10,0,23],
"dc/d1f/classcatalan__numbers.html#a54655c66cf89186d3d1fa90829b28ab8":[10,0,23,0],
"dc/d2f/namespacecount__of__trailing__ciphers__in__factorial__n.html":[9,0,17],
-"dc/d38/ordinary__least__squares__regressor_8cpp.html":[11,0,13,5],
-"dc/d38/ordinary__least__squares__regressor_8cpp.html#a01e6c7bf2b09272578b9c5819ce0f36f":[11,0,13,5,10]
+"dc/d38/ordinary__least__squares__regressor_8cpp.html":[11,0,13,5]
};
diff --git a/navtreeindex12.js b/navtreeindex12.js
index 5d128d575..ff9e3e96f 100644
--- a/navtreeindex12.js
+++ b/navtreeindex12.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX12 =
{
+"dc/d38/ordinary__least__squares__regressor_8cpp.html#a01e6c7bf2b09272578b9c5819ce0f36f":[11,0,13,5,10],
"dc/d38/ordinary__least__squares__regressor_8cpp.html#a207b3a99fd5974d3117e0b0ac0aad234":[11,0,13,5,6],
"dc/d38/ordinary__least__squares__regressor_8cpp.html#a21c80569aaffb7bf1657e54fa4b97deb":[11,0,13,5,2],
"dc/d38/ordinary__least__squares__regressor_8cpp.html#a42535e20e97d85aa61271e0894cc0359":[11,0,13,5,9],
@@ -15,7 +16,7 @@ var NAVTREEINDEX12 =
"dc/d38/ordinary__least__squares__regressor_8cpp.html#ae2edd40354a1ca7aeaee3d1e3589e713":[11,0,13,5,7],
"dc/d38/ordinary__least__squares__regressor_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,13,5,4],
"dc/d38/ordinary__least__squares__regressor_8cpp.html#af7243bdc6ae3c7169f01b85bb226e66a":[11,0,13,5,1],
-"dc/d3a/namespacesubset__sum.html":[9,0,125],
+"dc/d3a/namespacesubset__sum.html":[9,0,126],
"dc/d5a/rat__maze_8cpp.html":[11,0,0,7],
"dc/d5a/rat__maze_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,0,7,2],
"dc/d5a/rat__maze_8cpp.html#ab99107bfb4c6934cd4691868c66c0aa3":[11,0,0,7,1],
@@ -41,7 +42,7 @@ var NAVTREEINDEX12 =
"dc/d6d/power__of__2_8cpp.html#a5032470c9974bbd6ec254bf296530a5f":[11,0,1,6,0],
"dc/d6d/power__of__2_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,1,6,2],
"dc/d6d/power__of__2_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,1,6,1],
-"dc/d6d/structstd_1_1is__arithmetic_3_01uint256__t_01_4.html":[9,0,117,6],
+"dc/d6d/structstd_1_1is__arithmetic_3_01uint256__t_01_4.html":[9,0,118,6],
"dc/d6d/structstd_1_1is__arithmetic_3_01uint256__t_01_4.html":[10,0,19,1],
"dc/d82/area_8cpp.html":[11,0,14,2],
"dc/d82/area_8cpp.html#a3277e65a8f380e7632791975bfba0efb":[11,0,14,2,3],
@@ -170,7 +171,7 @@ var NAVTREEINDEX12 =
"dd/d1f/classdsu.html#ab8ee27083a3c2e2df80755165a2ec280":[10,0,30,7],
"dd/d1f/classdsu.html#ac0dc3e17e49fe19b159b4ea4096d7b55":[10,0,30,17],
"dd/d1f/classdsu.html#ac713a5b496d0405c82e2808a85e58415":[10,0,30,6],
-"dd/d21/namespacewindowed__median.html":[9,0,140],
+"dd/d21/namespacewindowed__median.html":[9,0,141],
"dd/d24/namespacedynamic__programming.html":[9,0,28],
"dd/d24/namespacedynamic__programming.html#a066e0e739e7c276eee6e61d5b4d37ce8":[9,0,28,4],
"dd/d24/namespacedynamic__programming.html#a0a2215194e58786c34db1ccaf8031079":[9,0,28,1],
@@ -248,6 +249,5 @@ var NAVTREEINDEX12 =
"dd/d47/namespacemath.html#a971ce57e368f2f631cf1f4ff3f864049":[9,0,69,39],
"dd/d47/namespacemath.html#aa8592c3279c41a2c6d4d64eeb488f63f":[9,0,69,24],
"dd/d47/namespacemath.html#aacb1411ef2029e81f249c21e17c96fdb":[9,0,69,32],
-"dd/d47/namespacemath.html#ab31d141f7c5b551746b1eee0eb4dedca":[9,0,69,33],
-"dd/d47/namespacemath.html#ab37f3a7302a84179aae682c79d8390bf":[9,0,69,1]
+"dd/d47/namespacemath.html#ab31d141f7c5b551746b1eee0eb4dedca":[9,0,69,33]
};
diff --git a/navtreeindex13.js b/navtreeindex13.js
index 42d1f3c40..542baab6c 100644
--- a/navtreeindex13.js
+++ b/navtreeindex13.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX13 =
{
+"dd/d47/namespacemath.html#ab37f3a7302a84179aae682c79d8390bf":[9,0,69,1],
"dd/d47/namespacemath.html#ab3b920cc56442abd92279ba23b50f4dc":[9,0,69,43],
"dd/d47/namespacemath.html#ab7f29862d30df351c317eedd60a0c656":[9,0,69,37],
"dd/d47/namespacemath.html#abc46c784a297fc1d2eb8b33a327fba4c":[9,0,69,8],
@@ -17,11 +18,11 @@ var NAVTREEINDEX13 =
"dd/d47/namespacemath.html#afa39ec943a4836c878e1614fd89b146f":[9,0,69,20],
"dd/d47/namespacemath.html#afcd07701d73ed65cd616bcba02737f3d":[9,0,69,28],
"dd/d4f/class_solution.html":[10,0,53],
-"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html":[9,0,122,0,0],
+"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html":[9,0,123,0,0],
"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html":[10,0,20,0,0],
-"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#a3d62f615a0171a5d77e7018f704f3a7e":[9,0,122,0,0,1],
+"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#a3d62f615a0171a5d77e7018f704f3a7e":[9,0,123,0,0,1],
"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#a3d62f615a0171a5d77e7018f704f3a7e":[10,0,20,0,0,1],
-"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#ae5ca7abf15e939eddc80542131de3645":[9,0,122,0,0,0],
+"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#ae5ca7abf15e939eddc80542131de3645":[9,0,123,0,0,0],
"dd/d5a/structstrings_1_1boyer__moore_1_1pattern.html#ae5ca7abf15e939eddc80542131de3645":[10,0,20,0,0,0],
"dd/d65/lu__decompose_8cpp.html":[11,0,15,11],
"dd/d65/lu__decompose_8cpp.html#a0283886819c7c140a023582b7269e2d0":[11,0,15,11,3],
@@ -215,8 +216,8 @@ var NAVTREEINDEX13 =
"de/d88/travelling__salesman__problem_8cpp.html#ab7706341d006e20d1ae58274187a3346":[11,0,9,11,2],
"de/d88/travelling__salesman__problem_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,9,11,0],
"de/d89/graham__scan__functions_8hpp_source.html":[11,0,8,0],
-"de/d95/namespace_subsets.html":[9,0,126],
-"de/d97/namespacestd_1_1experimental.html":[9,0,117,1],
+"de/d95/namespace_subsets.html":[9,0,127],
+"de/d97/namespacestd_1_1experimental.html":[9,0,118,1],
"de/d99/aliquot__sum_8cpp.html":[11,0,14,0],
"de/d99/aliquot__sum_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,14,0,2],
"de/d99/aliquot__sum_8cpp.html#ab37f3a7302a84179aae682c79d8390bf":[11,0,14,0,0],
@@ -248,6 +249,5 @@ var NAVTREEINDEX13 =
"de/dc3/fibonacci__sum_8cpp.html#a493fbaa7a94e3b7ca573111237bb3742":[11,0,14,19,0],
"de/dc3/fibonacci__sum_8cpp.html#a7cf5feaf168b88e74544da59ed830311":[11,0,14,19,3],
"de/dc3/fibonacci__sum_8cpp.html#a9c83cca09a3e4ff2a25c816a9303448e":[11,0,14,19,2],
-"de/dc3/fibonacci__sum_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,14,19,5],
-"de/dc3/fibonacci__sum_8cpp.html#aadb40ac4c74a7efc0680b83eeee138aa":[11,0,14,19,4]
+"de/dc3/fibonacci__sum_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,14,19,5]
};
diff --git a/navtreeindex14.js b/navtreeindex14.js
index 52e7bda36..8edf31597 100644
--- a/navtreeindex14.js
+++ b/navtreeindex14.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX14 =
{
+"de/dc3/fibonacci__sum_8cpp.html#aadb40ac4c74a7efc0680b83eeee138aa":[11,0,14,19,4],
"de/dc3/fibonacci__sum_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,14,19,1],
"de/dc5/intersection__of__two__arrays_8cpp.html":[11,0,16,4],
"de/dc5/intersection__of__two__arrays_8cpp.html#a167c24bd817469ae47358d12e034f2d5":[11,0,16,4,4],
@@ -64,7 +65,7 @@ var NAVTREEINDEX14 =
"df/d11/midpoint__integral__method_8cpp.html#ad53616fb4fa6880ae876bcba53365c51":[11,0,15,13,3],
"df/d11/midpoint__integral__method_8cpp.html#ae682ee71af44b1e9e884849cc6a6b040":[11,0,15,13,1],
"df/d11/midpoint__integral__method_8cpp.html#ae9f66040f8e0ba73c1c741261c22a52a":[11,0,15,13,2],
-"df/d1c/namespacestack__using__queue.html":[9,0,115],
+"df/d1c/namespacestack__using__queue.html":[9,0,116],
"df/d28/dsu__union__rank_8cpp.html":[11,0,4,8],
"df/d28/dsu__union__rank_8cpp.html#a45d94ead4cf4e1ff9f87c38bc99f59ae":[11,0,4,8,3],
"df/d28/dsu__union__rank_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,4,8,1],
@@ -125,13 +126,13 @@ var NAVTREEINDEX14 =
"df/d72/modular__division_8cpp.html#a66cdf93153cbd1408bd74ac68961d179":[11,0,14,35,2],
"df/d72/modular__division_8cpp.html#a905e368ae121beb7e7ea35349ddcdac7":[11,0,14,35,1],
"df/d72/modular__division_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,14,35,3],
-"df/d74/namespacesubarray__sum.html":[9,0,123],
+"df/d74/namespacesubarray__sum.html":[9,0,124],
"df/d76/namespacefibonacci.html":[9,0,31],
"df/d82/breadth__first__search_8cpp.html":[11,0,9,1],
"df/d82/breadth__first__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,9,1,2],
"df/d82/breadth__first__search_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,9,1,1],
"df/d88/namespacedp.html":[9,0,27],
-"df/d8e/namespacetrie__operations.html":[9,0,131],
+"df/d8e/namespacetrie__operations.html":[9,0,132],
"df/d8f/classothers_1_1_cache_1_1_l_f_u_cache.html":[9,0,88,0,1],
"df/d8f/classothers_1_1_cache_1_1_l_f_u_cache.html":[10,0,13,0,1],
"df/d8f/classothers_1_1_cache_1_1_l_f_u_cache.html#a16a25c102554c5653721a5112ef676c9":[9,0,88,0,1,5],
@@ -166,7 +167,7 @@ var NAVTREEINDEX14 =
"df/d94/subarray__sum_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,0,8,2],
"df/d94/subarray__sum_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,0,8,0],
"df/d94/subarray__sum_8cpp.html#af5687bbd9faf927fbd363c71e0baba5e":[11,0,0,8,1],
-"df/d99/structstd_1_1is__unsigned_3_01uint256__t_01_4.html":[9,0,117,10],
+"df/d99/structstd_1_1is__unsigned_3_01uint256__t_01_4.html":[9,0,118,10],
"df/d99/structstd_1_1is__unsigned_3_01uint256__t_01_4.html":[10,0,19,5],
"df/dc8/successive__approximation_8cpp.html":[11,0,15,22],
"df/dc8/successive__approximation_8cpp.html#a79c1d08919ff7780a5d7723172602389":[11,0,15,22,0],
@@ -178,7 +179,7 @@ var NAVTREEINDEX14 =
"df/dcb/greedy__algorithms_2dijkstra_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,11,3,2],
"df/dcb/greedy__algorithms_2dijkstra_8cpp.html#af6cb29ca6dc5771439f6ea7262058a71":[11,0,11,3,3],
"df/dcb/greedy__algorithms_2dijkstra_8cpp.html#af915876d0ca33cc71a6a6191a8cd3ccd":[11,0,11,3,1],
-"df/dcb/namespacestrings.html":[9,0,122],
+"df/dcb/namespacestrings.html":[9,0,123],
"df/dcd/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2math_2quadratic_equations_complex_numbers_8cpp-example.html":[12,2],
"df/dce/namespacegraph.html":[9,0,39],
"df/dce/namespacegraph.html#a0e30e0dca68cb6e4f671440819b35b6a":[9,0,39,6],
@@ -248,6 +249,5 @@ var NAVTREEINDEX14 =
"functions.html":[10,3,0],
"functions.html":[10,3,0,0],
"functions_a.html":[10,3,0,1],
-"functions_b.html":[10,3,0,2],
-"functions_c.html":[10,3,0,3]
+"functions_b.html":[10,3,0,2]
};
diff --git a/navtreeindex15.js b/navtreeindex15.js
index b75d0e78c..d447c9f7a 100644
--- a/navtreeindex15.js
+++ b/navtreeindex15.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX15 =
{
+"functions_c.html":[10,3,0,3],
"functions_d.html":[10,3,0,4],
"functions_e.html":[10,3,0,5],
"functions_f.html":[10,3,0,6],
diff --git a/navtreeindex2.js b/navtreeindex2.js
index 877eda845..31c36f725 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,41 +1,41 @@
var NAVTREEINDEX2 =
{
-"cpp/thread/lock.html":[9,0,117,247],
-"cpp/thread/notify_all_at_thread_exit.html":[9,0,117,307],
-"cpp/thread/sleep_for.html":[9,0,117,4,1],
-"cpp/thread/sleep_until.html":[9,0,117,4,2],
-"cpp/thread/try_lock.html":[9,0,117,463],
-"cpp/thread/yield.html":[9,0,117,4,3],
-"cpp/utility/declval.html":[9,0,117,94],
-"cpp/utility/forward.html":[9,0,117,149],
-"cpp/utility/functional/bind.html":[9,0,117,66],
-"cpp/utility/functional/mem_fn.html":[9,0,117,274],
-"cpp/utility/functional/not1.html":[9,0,117,305],
-"cpp/utility/functional/not2.html":[9,0,117,306],
-"cpp/utility/functional/ref.html":[9,0,117,88],
-"cpp/utility/functional/ref.html":[9,0,117,337],
-"cpp/utility/move.html":[9,0,117,288],
-"cpp/utility/move_if_noexcept.html":[9,0,117,290],
-"cpp/utility/pair/make_pair.html":[9,0,117,259],
-"cpp/utility/program/_Exit.html":[9,0,117,11],
-"cpp/utility/program/abort.html":[9,0,117,12],
-"cpp/utility/program/at_quick_exit.html":[9,0,117,30],
-"cpp/utility/program/atexit.html":[9,0,117,34],
-"cpp/utility/program/exit.html":[9,0,117,107],
-"cpp/utility/program/getenv.html":[9,0,117,183],
-"cpp/utility/program/longjmp.html":[9,0,117,252],
-"cpp/utility/program/quick_exit.html":[9,0,117,332],
-"cpp/utility/program/raise.html":[9,0,117,333],
-"cpp/utility/program/signal.html":[9,0,117,389],
-"cpp/utility/program/system.html":[9,0,117,443],
-"cpp/utility/rel_ops/operator_cmp.html":[9,0,117,3,0],
-"cpp/utility/rel_ops/operator_cmp.html":[9,0,117,3,1],
-"cpp/utility/rel_ops/operator_cmp.html":[9,0,117,3,2],
-"cpp/utility/rel_ops/operator_cmp.html":[9,0,117,3,3],
-"cpp/utility/tuple/forward_as_tuple.html":[9,0,117,150],
-"cpp/utility/tuple/make_tuple.html":[9,0,117,261],
-"cpp/utility/tuple/tie.html":[9,0,117,450],
-"cpp/utility/tuple/tuple_cat.html":[9,0,117,464],
+"cpp/thread/lock.html":[9,0,118,247],
+"cpp/thread/notify_all_at_thread_exit.html":[9,0,118,307],
+"cpp/thread/sleep_for.html":[9,0,118,4,1],
+"cpp/thread/sleep_until.html":[9,0,118,4,2],
+"cpp/thread/try_lock.html":[9,0,118,463],
+"cpp/thread/yield.html":[9,0,118,4,3],
+"cpp/utility/declval.html":[9,0,118,94],
+"cpp/utility/forward.html":[9,0,118,149],
+"cpp/utility/functional/bind.html":[9,0,118,66],
+"cpp/utility/functional/mem_fn.html":[9,0,118,274],
+"cpp/utility/functional/not1.html":[9,0,118,305],
+"cpp/utility/functional/not2.html":[9,0,118,306],
+"cpp/utility/functional/ref.html":[9,0,118,88],
+"cpp/utility/functional/ref.html":[9,0,118,337],
+"cpp/utility/move.html":[9,0,118,288],
+"cpp/utility/move_if_noexcept.html":[9,0,118,290],
+"cpp/utility/pair/make_pair.html":[9,0,118,259],
+"cpp/utility/program/_Exit.html":[9,0,118,11],
+"cpp/utility/program/abort.html":[9,0,118,12],
+"cpp/utility/program/at_quick_exit.html":[9,0,118,30],
+"cpp/utility/program/atexit.html":[9,0,118,34],
+"cpp/utility/program/exit.html":[9,0,118,107],
+"cpp/utility/program/getenv.html":[9,0,118,183],
+"cpp/utility/program/longjmp.html":[9,0,118,252],
+"cpp/utility/program/quick_exit.html":[9,0,118,332],
+"cpp/utility/program/raise.html":[9,0,118,333],
+"cpp/utility/program/signal.html":[9,0,118,389],
+"cpp/utility/program/system.html":[9,0,118,443],
+"cpp/utility/rel_ops/operator_cmp.html":[9,0,118,3,0],
+"cpp/utility/rel_ops/operator_cmp.html":[9,0,118,3,1],
+"cpp/utility/rel_ops/operator_cmp.html":[9,0,118,3,2],
+"cpp/utility/rel_ops/operator_cmp.html":[9,0,118,3,3],
+"cpp/utility/tuple/forward_as_tuple.html":[9,0,118,150],
+"cpp/utility/tuple/make_tuple.html":[9,0,118,261],
+"cpp/utility/tuple/tie.html":[9,0,118,450],
+"cpp/utility/tuple/tuple_cat.html":[9,0,118,464],
"d0/d01/smallest__circle_8cpp.html":[11,0,17,20],
"d0/d01/smallest__circle_8cpp.html#a0283886819c7c140a023582b7269e2d0":[11,0,17,20,6],
"d0/d01/smallest__circle_8cpp.html#a0b0676df8e4da7a08c7ccaecea344903":[11,0,17,20,1],
@@ -81,7 +81,7 @@ var NAVTREEINDEX2 =
"d0/d51/approximate__pi_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,14,1,3],
"d0/d51/approximate__pi_8cpp.html#abf7f2a6d91f1ca6c89698792aea3f188":[11,0,14,1,1],
"d0/d51/approximate__pi_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,14,1,2],
-"d0/d52/namespacewiggle__sort.html":[9,0,138],
+"d0/d52/namespacewiggle__sort.html":[9,0,139],
"d0/d58/classgraph_1_1_rooted_tree.html":[9,0,39,3],
"d0/d58/classgraph_1_1_rooted_tree.html":[10,0,6,4],
"d0/d58/classgraph_1_1_rooted_tree.html#a2ee3ad1161ac2532da30c3e22c265ad3":[9,0,39,3,2],
@@ -142,12 +142,12 @@ var NAVTREEINDEX2 =
"d0/db6/non__recursive__merge__sort_8cpp.html#a27236b8d3df3832e1f1225576a122534":[11,0,22,13,3],
"d0/db6/non__recursive__merge__sort_8cpp.html#aa26de383227859210f14dcf12201a079":[11,0,22,13,0],
"d0/db6/non__recursive__merge__sort_8cpp.html#ae97f4dd815654c4682f564afd718e824":[11,0,22,13,1],
-"d0/dbc/namespacestrings_1_1boyer__moore.html":[9,0,122,0],
-"d0/dbc/namespacestrings_1_1boyer__moore.html#a056122c8fe8fb0f5fca6428d3f7b5c3a":[9,0,122,0,4],
-"d0/dbc/namespacestrings_1_1boyer__moore.html#a0b165af1dc341289fd705be4c67728f8":[9,0,122,0,3],
-"d0/dbc/namespacestrings_1_1boyer__moore.html#a15703b553faed0d28202c10808cf9738":[9,0,122,0,5],
-"d0/dbc/namespacestrings_1_1boyer__moore.html#a2f6688c9bb3e692297a3aa09cebc1c00":[9,0,122,0,1],
-"d0/dbc/namespacestrings_1_1boyer__moore.html#aa709cf7fca02b7d3e1888423d5f739a1":[9,0,122,0,2],
+"d0/dbc/namespacestrings_1_1boyer__moore.html":[9,0,123,0],
+"d0/dbc/namespacestrings_1_1boyer__moore.html#a056122c8fe8fb0f5fca6428d3f7b5c3a":[9,0,123,0,4],
+"d0/dbc/namespacestrings_1_1boyer__moore.html#a0b165af1dc341289fd705be4c67728f8":[9,0,123,0,3],
+"d0/dbc/namespacestrings_1_1boyer__moore.html#a15703b553faed0d28202c10808cf9738":[9,0,123,0,5],
+"d0/dbc/namespacestrings_1_1boyer__moore.html#a2f6688c9bb3e692297a3aa09cebc1c00":[9,0,123,0,1],
+"d0/dbc/namespacestrings_1_1boyer__moore.html#aa709cf7fca02b7d3e1888423d5f739a1":[9,0,123,0,2],
"d0/dd2/treap_8cpp.html":[11,0,4,21],
"d0/dd2/treap_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,4,21,2],
"d0/dd2/treap_8cpp.html#ad939ec178d0069aeea14b7d6d7d12099":[11,0,4,21,3],
diff --git a/navtreeindex3.js b/navtreeindex3.js
index be53e6200..93ed673ec 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -232,6 +232,7 @@ var NAVTREEINDEX3 =
"d2/daa/classgreedy__algorithms_1_1dijkstra_1_1_graph.html#a224b6efacbad55d59e11b046f792fe79":[10,0,7,0,0,1],
"d2/daa/classgreedy__algorithms_1_1dijkstra_1_1_graph.html#afefaeb247734a7c64bd04e68e3c1c4bc":[9,0,42,0,0,0],
"d2/daa/classgreedy__algorithms_1_1dijkstra_1_1_graph.html#afefaeb247734a7c64bd04e68e3c1c4bc":[10,0,7,0,0,0],
+"d2/db0/namespacesieve__of__eratosthenes.html":[9,0,111],
"d2/dc4/classstack__linked_list.html":[10,0,55],
"d2/dc8/classdata__structures_1_1_stack.html":[9,0,21,6],
"d2/dc8/classdata__structures_1_1_stack.html":[10,0,2,13],
@@ -248,6 +249,5 @@ var NAVTREEINDEX3 =
"d2/dc8/classdata__structures_1_1_stack.html#a88a10062c0662a385f172669f2f19b86":[9,0,21,6,10],
"d2/dc8/classdata__structures_1_1_stack.html#a88a10062c0662a385f172669f2f19b86":[10,0,2,13,10],
"d2/dc8/classdata__structures_1_1_stack.html#a8cb0602c8a9c1603d0315938177ecc6a":[9,0,21,6,0],
-"d2/dc8/classdata__structures_1_1_stack.html#a8cb0602c8a9c1603d0315938177ecc6a":[10,0,2,13,0],
-"d2/dc8/classdata__structures_1_1_stack.html#aa753346c8ee5f21d4f4482398fe6d5c1":[9,0,21,6,3]
+"d2/dc8/classdata__structures_1_1_stack.html#a8cb0602c8a9c1603d0315938177ecc6a":[10,0,2,13,0]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 4e6af3177..d4de144d0 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX4 =
{
+"d2/dc8/classdata__structures_1_1_stack.html#aa753346c8ee5f21d4f4482398fe6d5c1":[9,0,21,6,3],
"d2/dc8/classdata__structures_1_1_stack.html#aa753346c8ee5f21d4f4482398fe6d5c1":[10,0,2,13,3],
"d2/dc8/classdata__structures_1_1_stack.html#aa9f9b087e9e7c00628e1289f0f1de3b2":[9,0,21,6,5],
"d2/dc8/classdata__structures_1_1_stack.html#aa9f9b087e9e7c00628e1289f0f1de3b2":[10,0,2,13,5],
@@ -7,8 +8,8 @@ var NAVTREEINDEX4 =
"d2/dc8/classdata__structures_1_1_stack.html#abb86ed67d9d97112897a09cfb10ff586":[10,0,2,13,6],
"d2/dc8/classdata__structures_1_1_stack.html#ac46842bdd9c655d84f865fa3a03da19b":[9,0,21,6,4],
"d2/dc8/classdata__structures_1_1_stack.html#ac46842bdd9c655d84f865fa3a03da19b":[10,0,2,13,4],
-"d2/dcf/namespacestatistics.html":[9,0,116],
-"d2/dd4/structstd_1_1is__integral_3_01uint128__t_01_4.html":[9,0,117,7],
+"d2/dcf/namespacestatistics.html":[9,0,117],
+"d2/dd4/structstd_1_1is__integral_3_01uint128__t_01_4.html":[9,0,118,7],
"d2/dd4/structstd_1_1is__integral_3_01uint128__t_01_4.html":[10,0,19,2],
"d2/ddb/namespacegcd__of__n__numbers.html":[9,0,35],
"d2/de1/namespacehouse__robber.html":[9,0,48],
@@ -18,7 +19,7 @@ var NAVTREEINDEX4 =
"d2/de9/heavy__light__decomposition_8cpp.html#a458410412185a5f09199deaff7157a8d":[11,0,20,1,5],
"d2/de9/heavy__light__decomposition_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,20,1,3],
"d2/de9/heavy__light__decomposition_8cpp.html#af31ec5409537703d9c8a47350386b32a":[11,0,20,1,6],
-"d2/dfc/structstd_1_1is__arithmetic_3_01uint128__t_01_4.html":[9,0,117,5],
+"d2/dfc/structstd_1_1is__arithmetic_3_01uint128__t_01_4.html":[9,0,118,5],
"d2/dfc/structstd_1_1is__arithmetic_3_01uint128__t_01_4.html":[10,0,19,0],
"d3/d05/sudoku__solver_8cpp.html":[11,0,0,10],
"d3/d05/sudoku__solver_8cpp.html#a07dc6acffd0500de9bdbf16b3ade94b0":[11,0,0,10,0],
@@ -32,7 +33,7 @@ var NAVTREEINDEX4 =
"d3/d06/ode__semi__implicit__euler_8cpp.html#af3adf7b092a87868917ee5fb4255192b":[11,0,15,17,0],
"d3/d09/node_8hpp.html":[11,0,4,12],
"d3/d09/node_8hpp_source.html":[11,0,4,12],
-"d3/d17/namespaceutil__functions.html":[9,0,133],
+"d3/d17/namespaceutil__functions.html":[9,0,134],
"d3/d19/sparse__matrix_8cpp.html":[11,0,17,21],
"d3/d19/sparse__matrix_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,21,0],
"d3/d22/quick__sort__iterative_8cpp.html":[11,0,22,18],
@@ -82,7 +83,7 @@ var NAVTREEINDEX4 =
"d3/d4c/xor__cipher_8cpp.html#aeff72a463ffc580c16cc849cbbdc58ef":[11,0,2,9,1],
"d3/d61/vector__important__functions_8cpp.html":[11,0,17,25],
"d3/d61/vector__important__functions_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,25,0],
-"d3/d6d/namespacesimpson__method.html":[9,0,111],
+"d3/d6d/namespacesimpson__method.html":[9,0,112],
"d3/d7d/brute__force__string__searching_8cpp.html":[11,0,23,1],
"d3/d7d/brute__force__string__searching_8cpp.html#ae2abaa9caa13fff35e45edca00bee123":[11,0,23,1,2],
"d3/d7d/brute__force__string__searching_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,23,1,1],
@@ -98,7 +99,7 @@ var NAVTREEINDEX4 =
"d3/d84/word__break_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,6,18,3],
"d3/d84/word__break_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,6,18,2],
"d3/d84/word__break_8cpp.html#afe4dcd6fd5282e535685361cba645d7c":[11,0,6,18,4],
-"d3/d91/namespacestrassens__multiplication.html":[9,0,119],
+"d3/d91/namespacestrassens__multiplication.html":[9,0,120],
"d3/d92/pancake__sort_8cpp.html":[11,0,22,14],
"d3/d92/pancake__sort_8cpp.html#a99e27ad84ad43df9977776b1a8d5416e":[11,0,22,14,2],
"d3/d92/pancake__sort_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,22,14,3],
@@ -204,7 +205,7 @@ var NAVTREEINDEX4 =
"d4/d08/sha256_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,12,6,5],
"d4/d08/sha256_8cpp.html#af9b52eba85d23e309035354141259f27":[11,0,12,6,8],
"d4/d08/sha256_8cpp.html#afea411191ec5281f43e91ea327984627":[11,0,12,6,3],
-"d4/d0c/namespacestd_1_1chrono.html":[9,0,117,0],
+"d4/d0c/namespacestd_1_1chrono.html":[9,0,118,0],
"d4/d0e/classdata__structures_1_1linked__list_1_1_node.html":[10,0,2,0,2],
"d4/d0e/classdata__structures_1_1linked__list_1_1_node.html#acfccd7b52c91d91300c5b317e5ec7a6e":[10,0,2,0,2,0],
"d4/d0f/namespacegram__schmidt.html":[9,0,38],
@@ -248,6 +249,5 @@ var NAVTREEINDEX4 =
"d4/d3e/k__nearest__neighbors_8cpp.html":[11,0,13,1],
"d4/d3e/k__nearest__neighbors_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97":[11,0,13,1,2],
"d4/d3e/k__nearest__neighbors_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,13,1,3],
-"d4/d3e/k__nearest__neighbors_8cpp.html#ad6ae16e50bb153ebaa7251d0aaa97b69":[11,0,13,1,1],
-"d4/d3e/n__queens_8cpp.html":[11,0,0,4]
+"d4/d3e/k__nearest__neighbors_8cpp.html#ad6ae16e50bb153ebaa7251d0aaa97b69":[11,0,13,1,1]
};
diff --git a/navtreeindex5.js b/navtreeindex5.js
index e04886e8d..3f2228437 100644
--- a/navtreeindex5.js
+++ b/navtreeindex5.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX5 =
{
+"d4/d3e/n__queens_8cpp.html":[11,0,0,4],
"d4/d3e/n__queens_8cpp.html#a0dbd7af47d87f0b956609fe9e3288ecb":[11,0,0,4,3],
"d4/d3e/n__queens_8cpp.html#a40ae0c7fd04eb20e7f3bff13fc6a5808":[11,0,0,4,2],
"d4/d3e/n__queens_8cpp.html#a5730b6683f6adcf5c5ef75cf53dc7160":[11,0,0,4,0],
@@ -76,7 +77,7 @@ var NAVTREEINDEX5 =
"d4/d90/classdata__structures_1_1_skip_list.html#ad7e392386d7db622185d6f7c718e4f16":[10,0,2,12,6],
"d4/d90/classdata__structures_1_1_skip_list.html#af2f3d4e15b1f47afac849c2e08a730f4":[9,0,21,5,5],
"d4/d90/classdata__structures_1_1_skip_list.html#af2f3d4e15b1f47afac849c2e08a730f4":[10,0,2,12,5],
-"d4/d91/namespacevector__cross.html":[9,0,135],
+"d4/d91/namespacevector__cross.html":[9,0,136],
"d4/d96/range__queries_2sparse__table_8cpp.html":[11,0,20,5],
"d4/d96/range__queries_2sparse__table_8cpp.html#a40810d8c0fe3f8cf432ab128b1ae0300":[11,0,20,5,1],
"d4/d96/range__queries_2sparse__table_8cpp.html#a803a2451e87021d14ae06f148383e6bc":[11,0,20,5,0],
@@ -161,7 +162,7 @@ var NAVTREEINDEX5 =
"d5/d1e/next__higher__number__with__same__number__of__set__bits_8cpp.html#a4b76571a2a04fa99c30a96eca9997f0e":[11,0,1,5,1],
"d5/d1e/next__higher__number__with__same__number__of__set__bits_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,1,5,2],
"d5/d1e/next__higher__number__with__same__number__of__set__bits_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,1,5,0],
-"d5/d25/structstd_1_1is__unsigned_3_01uint128__t_01_4.html":[9,0,117,9],
+"d5/d25/structstd_1_1is__unsigned_3_01uint128__t_01_4.html":[9,0,118,9],
"d5/d25/structstd_1_1is__unsigned_3_01uint128__t_01_4.html":[10,0,19,4],
"d5/d29/struct_min_heap_node.html":[10,0,43],
"d5/d2c/namespacelayers.html":[9,0,60],
@@ -248,6 +249,5 @@ var NAVTREEINDEX5 =
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md52":[4,6],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md53":[4,7],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md54":[4,8],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md55":[4,9],
-"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md56":[4,10]
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md55":[4,9]
};
diff --git a/navtreeindex6.js b/navtreeindex6.js
index 0e5d15eba..c7b34af7a 100644
--- a/navtreeindex6.js
+++ b/navtreeindex6.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX6 =
{
+"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md56":[4,10],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md57":[4,11],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md58":[4,12],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md59":[4,13],
@@ -24,27 +25,27 @@ var NAVTREEINDEX6 =
"d5/d90/palindrome__partitioning_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,6,13,2],
"d5/d90/palindrome__partitioning_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,6,13,0],
"d5/d91/namespacesorting.html":[8,3,2],
-"d5/d91/namespacesorting.html#a034d8b276518a902962e87d3158b64fd":[9,0,112,0],
-"d5/d91/namespacesorting.html#a0e9e1b21a1684585e9e50f9afe4d53a3":[9,0,112,12],
-"d5/d91/namespacesorting.html#a140d913e42fb94176a0b2c8b29a80420":[9,0,112,9],
-"d5/d91/namespacesorting.html#a263595fd9a0163b5b997b89fab3a0dc5":[9,0,112,6],
-"d5/d91/namespacesorting.html#a27236b8d3df3832e1f1225576a122534":[9,0,112,10],
-"d5/d91/namespacesorting.html#a2f8bc626eb57acae24a94636a23af6a1":[9,0,112,2],
-"d5/d91/namespacesorting.html#a4d76603c54d3dc56146e92d10a043924":[9,0,112,19],
-"d5/d91/namespacesorting.html#a5669396c6a6b1e14b97589b6e37980aa":[9,0,112,18],
-"d5/d91/namespacesorting.html#a5f4bc75cca6dd8294af2d0e328006c68":[9,0,112,5],
-"d5/d91/namespacesorting.html#a6eb67c2f91c98cf4464f75b5882022de":[9,0,112,14],
-"d5/d91/namespacesorting.html#a78cb2f3b97b6db2c062b2a1df05c9ea9":[9,0,112,4],
-"d5/d91/namespacesorting.html#a7bfe11bd4703eacd1dab93f25ec639c5":[9,0,112,20],
-"d5/d91/namespacesorting.html#a8fe6bac9e03f58abcc2ce26ef3de1b5f":[9,0,112,3],
-"d5/d91/namespacesorting.html#a9f59fe72dacc1f1218ef3c303d843168":[9,0,112,13],
-"d5/d91/namespacesorting.html#aa26de383227859210f14dcf12201a079":[9,0,112,7],
-"d5/d91/namespacesorting.html#aa3677f87b5b4756bc77e9e34c5f27935":[9,0,112,1],
-"d5/d91/namespacesorting.html#aac8f44b28b4aa96444383030b28f8b34":[9,0,112,11],
-"d5/d91/namespacesorting.html#ae3a775d99dbbb94c130a973df0cfddcf":[9,0,112,16],
-"d5/d91/namespacesorting.html#ae97f4dd815654c4682f564afd718e824":[9,0,112,8],
-"d5/d91/namespacesorting.html#af2c5b92cbfe73f63f6074c61b0a45331":[9,0,112,17],
-"d5/d91/namespacesorting.html#affc6ee160142cd017f8c4b213437d0fd":[9,0,112,15],
+"d5/d91/namespacesorting.html#a034d8b276518a902962e87d3158b64fd":[9,0,113,0],
+"d5/d91/namespacesorting.html#a0e9e1b21a1684585e9e50f9afe4d53a3":[9,0,113,12],
+"d5/d91/namespacesorting.html#a140d913e42fb94176a0b2c8b29a80420":[9,0,113,9],
+"d5/d91/namespacesorting.html#a263595fd9a0163b5b997b89fab3a0dc5":[9,0,113,6],
+"d5/d91/namespacesorting.html#a27236b8d3df3832e1f1225576a122534":[9,0,113,10],
+"d5/d91/namespacesorting.html#a2f8bc626eb57acae24a94636a23af6a1":[9,0,113,2],
+"d5/d91/namespacesorting.html#a4d76603c54d3dc56146e92d10a043924":[9,0,113,19],
+"d5/d91/namespacesorting.html#a5669396c6a6b1e14b97589b6e37980aa":[9,0,113,18],
+"d5/d91/namespacesorting.html#a5f4bc75cca6dd8294af2d0e328006c68":[9,0,113,5],
+"d5/d91/namespacesorting.html#a6eb67c2f91c98cf4464f75b5882022de":[9,0,113,14],
+"d5/d91/namespacesorting.html#a78cb2f3b97b6db2c062b2a1df05c9ea9":[9,0,113,4],
+"d5/d91/namespacesorting.html#a7bfe11bd4703eacd1dab93f25ec639c5":[9,0,113,20],
+"d5/d91/namespacesorting.html#a8fe6bac9e03f58abcc2ce26ef3de1b5f":[9,0,113,3],
+"d5/d91/namespacesorting.html#a9f59fe72dacc1f1218ef3c303d843168":[9,0,113,13],
+"d5/d91/namespacesorting.html#aa26de383227859210f14dcf12201a079":[9,0,113,7],
+"d5/d91/namespacesorting.html#aa3677f87b5b4756bc77e9e34c5f27935":[9,0,113,1],
+"d5/d91/namespacesorting.html#aac8f44b28b4aa96444383030b28f8b34":[9,0,113,11],
+"d5/d91/namespacesorting.html#ae3a775d99dbbb94c130a973df0cfddcf":[9,0,113,16],
+"d5/d91/namespacesorting.html#ae97f4dd815654c4682f564afd718e824":[9,0,113,8],
+"d5/d91/namespacesorting.html#af2c5b92cbfe73f63f6074c61b0a45331":[9,0,113,17],
+"d5/d91/namespacesorting.html#affc6ee160142cd017f8c4b213437d0fd":[9,0,113,15],
"d5/d95/structdata__structures_1_1treap_1_1_treap.html":[9,0,21,0,0],
"d5/d95/structdata__structures_1_1treap_1_1_treap.html":[10,0,2,5,0],
"d5/d95/structdata__structures_1_1treap_1_1_treap.html#a1ab082fe0aa95a238bbbc68ab6a72425":[9,0,21,0,0,19],
@@ -247,7 +248,6 @@ var NAVTREEINDEX6 =
"d6/d4e/namespaceciphers.html":[9,0,13],
"d6/d4e/namespaceciphers.html#ab9aec0ccf4b6809f652bb540be87c216":[9,0,13,2],
"d6/d50/_2_users_2runner_2work_2_c-_plus-_plus_2_c-_plus-_plus_2math_2iterative_factorial_8cpp-example.html":[12,1],
-"d6/d53/namespaceword__break.html":[9,0,141],
-"d6/d57/array__right__rotation_8cpp.html":[11,0,16,1],
-"d6/d57/array__right__rotation_8cpp.html#a167c24bd817469ae47358d12e034f2d5":[11,0,16,1,4]
+"d6/d53/namespaceword__break.html":[9,0,142],
+"d6/d57/array__right__rotation_8cpp.html":[11,0,16,1]
};
diff --git a/navtreeindex7.js b/navtreeindex7.js
index 8842d8421..da9917841 100644
--- a/navtreeindex7.js
+++ b/navtreeindex7.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX7 =
{
+"d6/d57/array__right__rotation_8cpp.html#a167c24bd817469ae47358d12e034f2d5":[11,0,16,1,4],
"d6/d57/array__right__rotation_8cpp.html#a1bfb8711f49e591eb168ccaa3df6fb86":[11,0,16,1,2],
"d6/d57/array__right__rotation_8cpp.html#a2b9769e44683dcb67fe1083ad91e134d":[11,0,16,1,7],
"d6/d57/array__right__rotation_8cpp.html#a6109193567a5b7e36a27f2b4865fce20":[11,0,16,1,1],
@@ -44,14 +45,14 @@ var NAVTREEINDEX7 =
"d6/d84/classhashing_1_1sha256_1_1_hash.html":[10,0,8,0,0],
"d6/d84/classhashing_1_1sha256_1_1_hash.html#a0896c27ac39c780e0ee62417fdd0b9d3":[10,0,8,0,0,1],
"d6/d84/classhashing_1_1sha256_1_1_hash.html#a4581f503a263d8e928e5716d54477e08":[10,0,8,0,0,0],
-"d6/d84/namespaceutils.html":[9,0,134],
+"d6/d84/namespaceutils.html":[9,0,135],
"d6/d8d/namespacemorse.html":[9,0,79],
"d6/d9d/large__factorial_8cpp.html":[11,0,14,28],
"d6/d9d/large__factorial_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97":[11,0,14,28,0],
"d6/d9d/large__factorial_8cpp.html#a3f93b60e229b6683e24c4754a7106ee8":[11,0,14,28,1],
"d6/d9d/large__factorial_8cpp.html#a76aae4778fbe89a3d59fd61fbc050cfa":[11,0,14,28,2],
-"d6/da2/namespacevigenere.html":[9,0,136],
-"d6/dab/namespacetree__234.html":[9,0,130],
+"d6/da2/namespacevigenere.html":[9,0,137],
+"d6/dab/namespacetree__234.html":[9,0,131],
"d6/dae/classothers_1_1lru__cache_1_1_l_r_u_cache.html":[10,0,13,2,0],
"d6/dae/classothers_1_1lru__cache_1_1_l_r_u_cache.html#a09cbe562b0c396329607f5d388d57c9c":[10,0,13,2,0,7],
"d6/dae/classothers_1_1lru__cache_1_1_l_r_u_cache.html#a1aafd0444b410e0fcb66287e9954c893":[10,0,13,2,0,8],
@@ -117,8 +118,8 @@ var NAVTREEINDEX7 =
"d6/dd3/ode__midpoint__euler_8cpp.html#aa13517b8e5de1b75592052db7f7e237f":[11,0,15,16,5],
"d6/dd3/ode__midpoint__euler_8cpp.html#abaeae8f62a018d197f0187a1c80a90fe":[11,0,15,16,4],
"d6/dd3/ode__midpoint__euler_8cpp.html#af3adf7b092a87868917ee5fb4255192b":[11,0,15,16,0],
-"d6/dd6/namespacestring.html":[9,0,120],
-"d6/dd6/namespacestring.html#ac2a35302e6bed93c4b2c6f55a21a5632":[9,0,120,0],
+"d6/dd6/namespacestring.html":[9,0,121],
+"d6/dd6/namespacestring.html#ac2a35302e6bed93c4b2c6f55a21a5632":[9,0,121,0],
"d6/dd8/is__graph__bipartite_8cpp.html":[11,0,9,9],
"d6/dd8/is__graph__bipartite_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,9,9,2],
"d6/dd8/is__graph__bipartite_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,9,9,1],
@@ -133,7 +134,7 @@ var NAVTREEINDEX7 =
"d7/d07/bidirectional__dijkstra_8cpp.html#a69172365aebde9be1997157f6f80e0cf":[11,0,9,0,0],
"d7/d07/bidirectional__dijkstra_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,9,0,2],
"d7/d08/namespacegraph__coloring.html":[9,0,40],
-"d7/d0a/namespacetrie__using__hashmap.html":[9,0,132],
+"d7/d0a/namespacetrie__using__hashmap.html":[9,0,133],
"d7/d1b/md__r_e_v_i_e_w_e_r___c_o_d_e.html":[6],
"d7/d1e/graph_2dijkstra_8cpp.html":[11,0,9,6],
"d7/d1e/graph_2dijkstra_8cpp.html#a0e30e0dca68cb6e4f671440819b35b6a":[11,0,9,6,0],
@@ -155,9 +156,9 @@ var NAVTREEINDEX7 =
"d7/d35/matrix__exponentiation_8cpp.html#ad8389ed58fd0ec66df248014775ad1fa":[11,0,17,13,3],
"d7/d35/matrix__exponentiation_8cpp.html#ae1d1ec9482079231e898236e2b23c9ba":[11,0,17,13,1],
"d7/d35/matrix__exponentiation_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,17,13,4],
-"d7/d3f/namespacetravelling_salesman__bitmanipulation.html":[9,0,129],
-"d7/d47/namespace_x_o_r.html":[9,0,142],
-"d7/d47/structstd_1_1is__integral_3_01uint256__t_01_4.html":[9,0,117,8],
+"d7/d3f/namespacetravelling_salesman__bitmanipulation.html":[9,0,130],
+"d7/d47/namespace_x_o_r.html":[9,0,143],
+"d7/d47/structstd_1_1is__integral_3_01uint256__t_01_4.html":[9,0,118,8],
"d7/d47/structstd_1_1is__integral_3_01uint256__t_01_4.html":[10,0,19,3],
"d7/d48/structgeometry_1_1grahamscan_1_1_point.html":[10,0,5,0,0],
"d7/d4c/namespacek__nearest__neighbors.html":[9,0,55],
@@ -196,17 +197,17 @@ var NAVTREEINDEX7 =
"d7/d77/class_edge.html":[10,0,32],
"d7/d77/class_edge.html#a415a5d002fe11c58711e48aabe975980":[10,0,32,0],
"d7/d7a/namespacebinomial.html":[9,0,8],
-"d7/d7c/classstatistics_1_1stats__computer1.html":[9,0,116,0],
+"d7/d7c/classstatistics_1_1stats__computer1.html":[9,0,117,0],
"d7/d7c/classstatistics_1_1stats__computer1.html":[10,0,18,0],
-"d7/d7c/classstatistics_1_1stats__computer1.html#a27f0a03e2fd2254f1c81fe668226bd92":[9,0,116,0,3],
+"d7/d7c/classstatistics_1_1stats__computer1.html#a27f0a03e2fd2254f1c81fe668226bd92":[9,0,117,0,3],
"d7/d7c/classstatistics_1_1stats__computer1.html#a27f0a03e2fd2254f1c81fe668226bd92":[10,0,18,0,3],
-"d7/d7c/classstatistics_1_1stats__computer1.html#a350bf6c429691d3578c4dfc6679a0797":[9,0,116,0,4],
+"d7/d7c/classstatistics_1_1stats__computer1.html#a350bf6c429691d3578c4dfc6679a0797":[9,0,117,0,4],
"d7/d7c/classstatistics_1_1stats__computer1.html#a350bf6c429691d3578c4dfc6679a0797":[10,0,18,0,4],
-"d7/d7c/classstatistics_1_1stats__computer1.html#a390697dcee210b91823ceff04b25081b":[9,0,116,0,0],
+"d7/d7c/classstatistics_1_1stats__computer1.html#a390697dcee210b91823ceff04b25081b":[9,0,117,0,0],
"d7/d7c/classstatistics_1_1stats__computer1.html#a390697dcee210b91823ceff04b25081b":[10,0,18,0,0],
-"d7/d7c/classstatistics_1_1stats__computer1.html#aa13bf7c38de112f71921a5525d71a2f2":[9,0,116,0,1],
+"d7/d7c/classstatistics_1_1stats__computer1.html#aa13bf7c38de112f71921a5525d71a2f2":[9,0,117,0,1],
"d7/d7c/classstatistics_1_1stats__computer1.html#aa13bf7c38de112f71921a5525d71a2f2":[10,0,18,0,1],
-"d7/d7c/classstatistics_1_1stats__computer1.html#af57e942d49f4fd70f059f224b4ac07e1":[9,0,116,0,2],
+"d7/d7c/classstatistics_1_1stats__computer1.html#af57e942d49f4fd70f059f224b4ac07e1":[9,0,117,0,2],
"d7/d7c/classstatistics_1_1stats__computer1.html#af57e942d49f4fd70f059f224b4ac07e1":[10,0,18,0,2],
"d7/d7f/section.html":[5],
"d7/d81/namespacebit__manipulation.html":[9,0,9],
@@ -241,13 +242,12 @@ var NAVTREEINDEX7 =
"d7/db9/hill__cipher_8cpp.html#ab9aec0ccf4b6809f652bb540be87c216":[11,0,2,4,5],
"d7/db9/hill__cipher_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,2,4,1],
"d7/dba/cll_8h_source.html":[11,0,4,0,0],
-"d7/dbf/namespacestd_1_1this__thread.html":[9,0,117,4],
+"d7/dbf/namespacestd_1_1this__thread.html":[9,0,118,4],
"d7/dcb/_unbounded__0__1___knapsack_8cpp.html":[11,0,6,17],
"d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a1bcff7f76de48fa7f629480f8f18b5ef":[11,0,6,17,3],
"d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,6,17,2],
"d7/dcb/_unbounded__0__1___knapsack_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,6,17,1],
"d7/dcb/_unbounded__0__1___knapsack_8cpp.html#afe447a5979582174908695952c8a079c":[11,0,6,17,0],
"d7/ded/queue_8hpp_source.html":[11,0,4,13],
-"d7/def/trie__multiple__search_8cpp.html":[11,0,16,6],
-"d7/def/trie__multiple__search_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,16,6,2]
+"d7/def/trie__multiple__search_8cpp.html":[11,0,16,6]
};
diff --git a/navtreeindex8.js b/navtreeindex8.js
index 0fface5a0..b8c5a7c85 100644
--- a/navtreeindex8.js
+++ b/navtreeindex8.js
@@ -1,5 +1,6 @@
var NAVTREEINDEX8 =
{
+"d7/def/trie__multiple__search_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,16,6,2],
"d7/def/trie__multiple__search_8cpp.html#abf9e6b7e6f15df4b525a2e7705ba3089":[11,0,16,6,1],
"d8/d10/structlist.html":[10,0,39],
"d8/d10/structlist.html#a1900fe79e875e2838625b2eb60837f8f":[10,0,39,1],
@@ -9,7 +10,7 @@ var NAVTREEINDEX8 =
"d8/d13/bubble__sort_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,22,2,1],
"d8/d13/bubble__sort_8cpp.html#af3b12930a83915712461d53fe9659686":[11,0,22,2,0],
"d8/d14/namespacen__queens__optimized.html":[9,0,83],
-"d8/d1d/namespacestrand.html":[9,0,118],
+"d8/d1d/namespacestrand.html":[9,0,119],
"d8/d28/classrange__queries_1_1per_seg_tree.html":[9,0,101,1],
"d8/d28/classrange__queries_1_1per_seg_tree.html":[10,0,16,2],
"d8/d28/classrange__queries_1_1per_seg_tree.html#a0cec4b77d264521717cf9b0482c45817":[9,0,101,1,4],
@@ -248,6 +249,5 @@ var NAVTREEINDEX8 =
"d8/d9c/union__of__two__arrays_8cpp.html#aa515639572647508b94986489aab6d76":[11,0,16,7,6],
"d8/d9c/union__of__two__arrays_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,16,7,3],
"d8/d9c/union__of__two__arrays_8cpp.html#aacafde185abd8670abee51157f273dc2":[11,0,16,7,9],
-"d8/d9c/union__of__two__arrays_8cpp.html#abdd77344d4af8fd56d14a5cabbf2f669":[11,0,16,7,5],
-"d8/d9c/union__of__two__arrays_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,16,7,1]
+"d8/d9c/union__of__two__arrays_8cpp.html#abdd77344d4af8fd56d14a5cabbf2f669":[11,0,16,7,5]
};
diff --git a/navtreeindex9.js b/navtreeindex9.js
index dea01c3f1..65132fa96 100644
--- a/navtreeindex9.js
+++ b/navtreeindex9.js
@@ -1,19 +1,20 @@
var NAVTREEINDEX9 =
{
+"d8/d9c/union__of__two__arrays_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,16,7,1],
"d8/d9c/union__of__two__arrays_8cpp.html#af7b81d7a1534216af6a36a80135beb86":[11,0,16,7,8],
-"d8/d9f/namespacesudoku__solver.html":[9,0,127],
+"d8/d9f/namespacesudoku__solver.html":[9,0,128],
"d8/da7/namespacedepth__first__search.html":[9,0,22],
-"d8/dab/classstatistics_1_1stats__computer2.html":[9,0,116,1],
+"d8/dab/classstatistics_1_1stats__computer2.html":[9,0,117,1],
"d8/dab/classstatistics_1_1stats__computer2.html":[10,0,18,1],
-"d8/dab/classstatistics_1_1stats__computer2.html#a8290966ad468f2a8c266d008bc60720e":[9,0,116,1,0],
+"d8/dab/classstatistics_1_1stats__computer2.html#a8290966ad468f2a8c266d008bc60720e":[9,0,117,1,0],
"d8/dab/classstatistics_1_1stats__computer2.html#a8290966ad468f2a8c266d008bc60720e":[10,0,18,1,0],
-"d8/dab/classstatistics_1_1stats__computer2.html#ab444d485c9e7db35bdc2ff6b7775291a":[9,0,116,1,4],
+"d8/dab/classstatistics_1_1stats__computer2.html#ab444d485c9e7db35bdc2ff6b7775291a":[9,0,117,1,4],
"d8/dab/classstatistics_1_1stats__computer2.html#ab444d485c9e7db35bdc2ff6b7775291a":[10,0,18,1,4],
-"d8/dab/classstatistics_1_1stats__computer2.html#acf2e84df4fc386bb3295016ef8fd156e":[9,0,116,1,2],
+"d8/dab/classstatistics_1_1stats__computer2.html#acf2e84df4fc386bb3295016ef8fd156e":[9,0,117,1,2],
"d8/dab/classstatistics_1_1stats__computer2.html#acf2e84df4fc386bb3295016ef8fd156e":[10,0,18,1,2],
-"d8/dab/classstatistics_1_1stats__computer2.html#ade6de704deea24fdc88077b3d9a0d534":[9,0,116,1,1],
+"d8/dab/classstatistics_1_1stats__computer2.html#ade6de704deea24fdc88077b3d9a0d534":[9,0,117,1,1],
"d8/dab/classstatistics_1_1stats__computer2.html#ade6de704deea24fdc88077b3d9a0d534":[10,0,18,1,1],
-"d8/dab/classstatistics_1_1stats__computer2.html#af6198817084276113b3c064e87ce0555":[9,0,116,1,3],
+"d8/dab/classstatistics_1_1stats__computer2.html#af6198817084276113b3c064e87ce0555":[9,0,117,1,3],
"d8/dab/classstatistics_1_1stats__computer2.html#af6198817084276113b3c064e87ce0555":[10,0,18,1,3],
"d8/db1/binomial__calculate_8cpp.html":[11,0,14,4],
"d8/db1/binomial__calculate_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,14,4,2],
@@ -30,16 +31,16 @@ var NAVTREEINDEX9 =
"d8/dcc/binary__insertion__sort_8cpp.html#a5f4bc75cca6dd8294af2d0e328006c68":[11,0,22,0,1],
"d8/dcc/binary__insertion__sort_8cpp.html#aa8dca7b867074164d5f45b0f3851269d":[11,0,22,0,3],
"d8/dcc/binary__insertion__sort_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,22,0,2],
-"d8/dcc/namespacestd.html":[9,0,117],
+"d8/dcc/namespacestd.html":[9,0,118],
"d8/dcd/namespacelru__cache.html":[9,0,65],
"d8/dd5/check__factorial_8cpp.html":[11,0,14,6],
"d8/dd5/check__factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,14,6,2],
"d8/dd5/check__factorial_8cpp.html#a6c72f756a7bf1b9043c357e3fe7814ca":[11,0,14,6,0],
"d8/dd5/check__factorial_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,14,6,1],
"d8/ddf/sieve__of__eratosthenes_8cpp.html":[11,0,14,51],
-"d8/ddf/sieve__of__eratosthenes_8cpp.html#a235843bdf82d2a6cc8596ae8fd3b8df9":[11,0,14,51,1],
-"d8/ddf/sieve__of__eratosthenes_8cpp.html#a7eebd5e7686a8db363f937b2f30d3818":[11,0,14,51,2],
-"d8/ddf/sieve__of__eratosthenes_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9":[11,0,14,51,3],
+"d8/ddf/sieve__of__eratosthenes_8cpp.html#a22be949d160b26361f7e323310f7fa0c":[11,0,14,51,2],
+"d8/ddf/sieve__of__eratosthenes_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,14,51,3],
+"d8/ddf/sieve__of__eratosthenes_8cpp.html#a55bc4a221e584d33b79b322432ecc0f3":[11,0,14,51,1],
"d8/ddf/sieve__of__eratosthenes_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,14,51,0],
"d8/dee/avltree_8cpp.html":[11,0,4,1],
"d8/dee/avltree_8cpp.html#a2473fe7416332495b2678ebe89652e4b":[11,0,4,1,6],
@@ -74,14 +75,14 @@ var NAVTREEINDEX9 =
"d9/d02/linear__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,21,6,2],
"d9/d02/linear__search_8cpp.html#a84ac3988a534eb60ca351ed6caf56d84":[11,0,21,6,0],
"d9/d02/linear__search_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,21,6,1],
-"d9/d03/namespacestring__search.html":[9,0,121],
-"d9/d03/namespacestring__search.html#a1e37af2f023495129cb57338c801209e":[9,0,121,4],
-"d9/d03/namespacestring__search.html#a21c673d56cbf67b1d2ee4d869185b7d9":[9,0,121,5],
-"d9/d03/namespacestring__search.html#a83c72ff237cdf623e42d4295e0029bf9":[9,0,121,3],
-"d9/d03/namespacestring__search.html#a8fb0bc932ba8b582c9f4c71338d050f8":[9,0,121,2],
-"d9/d03/namespacestring__search.html#aeb2cd81064717aedd62bfb096b1a73d8":[9,0,121,0],
-"d9/d03/namespacestring__search.html#aebe07cea289a13142503d98be7df11fd":[9,0,121,1],
-"d9/d03/namespacestring__search.html#aed769d565b705a9b3e0eb1ec74088893":[9,0,121,6],
+"d9/d03/namespacestring__search.html":[9,0,122],
+"d9/d03/namespacestring__search.html#a1e37af2f023495129cb57338c801209e":[9,0,122,4],
+"d9/d03/namespacestring__search.html#a21c673d56cbf67b1d2ee4d869185b7d9":[9,0,122,5],
+"d9/d03/namespacestring__search.html#a83c72ff237cdf623e42d4295e0029bf9":[9,0,122,3],
+"d9/d03/namespacestring__search.html#a8fb0bc932ba8b582c9f4c71338d050f8":[9,0,122,2],
+"d9/d03/namespacestring__search.html#aeb2cd81064717aedd62bfb096b1a73d8":[9,0,122,0],
+"d9/d03/namespacestring__search.html#aebe07cea289a13142503d98be7df11fd":[9,0,122,1],
+"d9/d03/namespacestring__search.html#aed769d565b705a9b3e0eb1ec74088893":[9,0,122,6],
"d9/d12/classothers_1_1iterative__tree__traversals_1_1_binary_tree.html":[10,0,13,1,0],
"d9/d12/classothers_1_1iterative__tree__traversals_1_1_binary_tree.html#a0c33f2c1a3a3deb486a1c33ee5239499":[10,0,13,1,0,1],
"d9/d12/classothers_1_1iterative__tree__traversals_1_1_binary_tree.html#a3078a5ccf45d6a7031dcf46e43de65b6":[10,0,13,1,0,0],
@@ -101,7 +102,7 @@ var NAVTREEINDEX9 =
"d9/d1f/binary__addition_8cpp.html":[11,0,11,0],
"d9/d1f/binary__addition_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e":[11,0,11,0,2],
"d9/d1f/binary__addition_8cpp.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[11,0,11,0,1],
-"d9/d21/namespacewave__sort.html":[9,0,137],
+"d9/d21/namespacewave__sort.html":[9,0,138],
"d9/d23/classgraph_1_1_lowest_common_ancestor.html":[9,0,39,2],
"d9/d23/classgraph_1_1_lowest_common_ancestor.html":[10,0,6,3],
"d9/d23/classgraph_1_1_lowest_common_ancestor.html#a42589cc39d6bbff6c997152f1b96e356":[9,0,39,2,2],
@@ -160,7 +161,7 @@ var NAVTREEINDEX9 =
"d9/d49/structdata__structures_1_1_node.html#ac75aa86a598357c5c882ec6a1174aa68":[10,0,2,10,2],
"d9/d49/structdata__structures_1_1_node.html#ac916d833aad2b9c41f01a92db2f8c48e":[9,0,21,3,1],
"d9/d49/structdata__structures_1_1_node.html#ac916d833aad2b9c41f01a92db2f8c48e":[10,0,2,10,1],
-"d9/d55/namespacesparse__table.html":[9,0,113],
+"d9/d55/namespacesparse__table.html":[9,0,114],
"d9/d5a/structgeometry_1_1jarvis_1_1_point.html":[10,0,5,1,1],
"d9/d5d/extended__euclid__algorithm_8cpp.html":[11,0,14,12],
"d9/d5d/extended__euclid__algorithm_8cpp.html#a1792ac7c33aaf26b860ab55f5652ab25":[11,0,14,12,1],
@@ -248,6 +249,5 @@ var NAVTREEINDEX9 =
"d9/dde/classbinary__search__tree.html#aa08f65f6f3bfcb14f8c3d1e65305ae50":[10,0,21,19],
"d9/dde/classbinary__search__tree.html#aa4f84b2eec9b9201af1840868ddb5fb2":[10,0,21,2],
"d9/dde/classbinary__search__tree.html#aa67321ed575ca313cd71d833d91234a6":[10,0,21,1],
-"d9/dde/classbinary__search__tree.html#ab81edd415324d372632c42dc7dbcb9e1":[10,0,21,18],
-"d9/dde/classbinary__search__tree.html#ad9912e8574538e86f9bd2c38e7e63d03":[10,0,21,7]
+"d9/dde/classbinary__search__tree.html#ab81edd415324d372632c42dc7dbcb9e1":[10,0,21,18]
};
diff --git a/search/all_15.js b/search/all_15.js
index 99c89f710..7ab171cce 100644
--- a/search/all_15.js
+++ b/search/all_15.js
@@ -118,7 +118,7 @@ var searchData=
['primes_115',['primes',['../de/d9b/prime__numbers_8cpp.html#a9575f3a51eeb8a57d657b3db6a4b441a',1,'prime_numbers.cpp']]],
['primes_5fup_5fto_5fbillion_2ecpp_116',['primes_up_to_billion.cpp',['../d4/d9c/primes__up__to__billion_8cpp.html',1,'']]],
['print_117',['Print',['../d3/d95/classdata__structures_1_1tree__234_1_1_tree234.html#a2e9a9db7792cf5383f4c4cc418255165',1,'data_structures::tree_234::Tree234']]],
- ['print_118',['print',['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#ac341901e926b3fa3a796c64ca572f592',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print()'],['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#a424b17ddc672b25fe0bd9dc8612fba21',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print(Node *root)'],['../de/dcf/classoperations__on__datastructures_1_1reverse__binary__tree_1_1_binary_tree.html#a5cf972a2c994a4fa1a89fc77bd5ad503',1,'operations_on_datastructures::reverse_binary_tree::BinaryTree::print()'],['../d2/d2f/namespacegreedy__algorithms_1_1dijkstra.html#a7341d7c76a6145e991cdd231f689fca8',1,'greedy_algorithms::dijkstra::print()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a235843bdf82d2a6cc8596ae8fd3b8df9',1,'print(): sieve_of_eratosthenes.cpp'],['../da/d6d/namespaceoperations__on__datastructures.html#a6109193567a5b7e36a27f2b4865fce20',1,'operations_on_datastructures::print()']]],
+ ['print_118',['print',['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#ac341901e926b3fa3a796c64ca572f592',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print()'],['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#a424b17ddc672b25fe0bd9dc8612fba21',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print(Node *root)'],['../de/dcf/classoperations__on__datastructures_1_1reverse__binary__tree_1_1_binary_tree.html#a5cf972a2c994a4fa1a89fc77bd5ad503',1,'operations_on_datastructures::reverse_binary_tree::BinaryTree::print()'],['../d2/d2f/namespacegreedy__algorithms_1_1dijkstra.html#a7341d7c76a6145e991cdd231f689fca8',1,'greedy_algorithms::dijkstra::print()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a55bc4a221e584d33b79b322432ecc0f3',1,'math::sieve_of_eratosthenes::print()'],['../da/d6d/namespaceoperations__on__datastructures.html#a6109193567a5b7e36a27f2b4865fce20',1,'operations_on_datastructures::print()']]],
['print_5fprimes_119',['print_primes',['../dd/d47/namespacemath.html#ad09d59850865012a6fd95d89954c82e4',1,'math']]],
['print_5ftable_120',['print_table',['../d8/d41/namespacegames_1_1memory__game.html#ac589ef65abb0a6b9a7116ee0f9fd5280',1,'games::memory_game']]],
['printarray_121',['printArray',['../d2/d52/heap__sort_8cpp.html#a9ed3e1510afdf3edd06cf2b68769a767',1,'heap_sort.cpp']]],
diff --git a/search/all_18.js b/search/all_18.js
index 915ffa5f2..5435758ca 100644
--- a/search/all_18.js
+++ b/search/all_18.js
@@ -131,211 +131,212 @@ var searchData=
['shuffle_5forder_5fengine_128',['shuffle_order_engine',['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine.html',0,'std::shuffle_order_engine'],['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/shuffle_order_engine.html',0,'std::shuffle_order_engine::shuffle_order_engine()']]],
['side_129',['side',['../de/d00/classgraph_1_1is__graph__bipartite_1_1_graph.html#a9d10768f927baa8a4d4a5ffce295b6b6',1,'graph::is_graph_bipartite::Graph']]],
['sieve_130',['Sieve',['../d4/d9c/primes__up__to__billion_8cpp.html#a031cada84819ed6426f58e4f7e81261c',1,'primes_up_to_billion.cpp']]],
- ['sieve_131',['sieve',['../dd/d47/namespacemath.html#a91366864111e1fac29722ca45e02ea8f',1,'math::sieve()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a7eebd5e7686a8db363f937b2f30d3818',1,'sieve(uint32_t N): sieve_of_eratosthenes.cpp']]],
- ['sieve_5fof_5feratosthenes_2ecpp_132',['sieve_of_eratosthenes.cpp',['../d8/ddf/sieve__of__eratosthenes_8cpp.html',1,'']]],
- ['sieveoferatosthenes_133',['SieveOfEratosthenes',['../db/d0d/prime__factorization_8cpp.html#affe577b9bce8f604f5e2f861c63c7099',1,'prime_factorization.cpp']]],
- ['sig2hex_134',['sig2hex',['../d5/d96/md5_8cpp.html#aaee69c6136a841043f956de32116e348',1,'hashing::md5::sig2hex()'],['../d8/d7a/sha1_8cpp.html#aada0803ef851d831b7a290a924e3c228',1,'hashing::sha1::sig2hex()']]],
- ['sig_5fatomic_5ft_135',['sig_atomic_t',['http://en.cppreference.com/w/cpp/utility/program/sig_atomic_t.html',0,'std']]],
- ['sigmoid_136',['sigmoid',['../d2/d58/neural__network_8cpp.html#a23aa9d32bcbcd65cfc85f0a41e2afadc',1,'machine_learning::neural_network::activations']]],
- ['signal_137',['signal',['http://en.cppreference.com/w/cpp/utility/program/signal.html',0,'std']]],
- ['signaling_5fnan_138',['signaling_NaN',['http://en.cppreference.com/w/cpp/types/numeric_limits/signaling_NaN.html',0,'std::numeric_limits']]],
- ['signbit_139',['signbit',['http://en.cppreference.com/w/cpp/numeric/math/signbit.html',0,'std']]],
- ['simpson_5fmethod_140',['simpson_method',['../d3/d6d/namespacesimpson__method.html',1,'']]],
- ['sin_141',['sin',['http://en.cppreference.com/w/cpp/numeric/math/sin.html',0,'std']]],
- ['single_5fpredict_142',['single_predict',['../d4/df4/classmachine__learning_1_1neural__network_1_1_neural_network.html#a3b9eac1824d365dce715fb17c33cb96f',1,'machine_learning::neural_network::NeuralNetwork']]],
- ['sinh_143',['sinh',['http://en.cppreference.com/w/cpp/numeric/math/sinh.html',0,'std']]],
- ['size_144',['size',['../dd/d95/classdata__structures_1_1_segment_tree.html#a167fd91b68048e49e97859a8947690f3',1,'data_structures::SegmentTree::size'],['../d1/dc2/classstack.html#a0a6b2b93ec970296940798ee98a5072e',1,'stack::size'],['../d5/d95/structdata__structures_1_1treap_1_1_treap.html#af5f0b8263339485989f8a02ae026114c',1,'data_structures::treap::Treap::size'],['http://en.cppreference.com/w/cpp/container/dynarray/size.html',0,'std::dynarray::size()'],['http://en.cppreference.com/w/cpp/container/vector/size.html',0,'std::vector::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::match_results::size()'],['http://en.cppreference.com/w/cpp/container/multiset/size.html',0,'std::multiset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::string::size()'],['http://en.cppreference.com/w/cpp/container/set/size.html',0,'std::set::size()'],['http://en.cppreference.com/w/cpp/container/unordered_map/size.html',0,'std::unordered_map::size()'],['http://en.cppreference.com/w/cpp/utility/initializer_list/size.html',0,'std::initializer_list::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::wsmatch::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::smatch::size()'],['http://en.cppreference.com/w/cpp/container/stack/size.html',0,'std::stack::size()'],['http://en.cppreference.com/w/cpp/container/unordered_multimap/size.html',0,'std::unordered_multimap::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::wcmatch::size()'],['http://en.cppreference.com/w/cpp/container/deque/size.html',0,'std::deque::size()'],['http://en.cppreference.com/w/cpp/container/queue/size.html',0,'std::queue::size()'],['http://en.cppreference.com/w/cpp/utility/bitset/size.html',0,'std::bitset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::basic_string::size()'],['http://en.cppreference.com/w/cpp/container/priority_queue/size.html',0,'std::priority_queue::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::wstring::size()'],['http://en.cppreference.com/w/cpp/container/unordered_multiset/size.html',0,'std::unordered_multiset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::u16string::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::u32string::size()'],['http://en.cppreference.com/w/cpp/container/list/size.html',0,'std::list::size()'],['http://en.cppreference.com/w/cpp/container/map/size.html',0,'std::map::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::cmatch::size()'],['http://en.cppreference.com/w/cpp/numeric/random/seed_seq/size.html',0,'std::seed_seq::size()'],['http://en.cppreference.com/w/cpp/container/unordered_set/size.html',0,'std::unordered_set::size()'],['http://en.cppreference.com/w/cpp/container/multimap/size.html',0,'std::multimap::size()'],['http://en.cppreference.com/w/cpp/container/array/size.html',0,'std::array::size()'],['../d9/dde/classbinary__search__tree.html#a564fe43e7e8f7ecb6f10667a70fbc6f3',1,'binary_search_tree::size()'],['../d9/dae/classdata__structures_1_1_bitset.html#a2f1f44d6a12b0de4aaf242872b1c7b54',1,'data_structures::Bitset::size()'],['../dd/d1f/classdsu.html#a1c24228b0f2f49220133fb8c3566a55c',1,'dsu::size()'],['../db/d5b/structdata__structures_1_1stack__using__queue_1_1_stack.html#ac0ddec9ab8f778dad23ec446d7a77b39',1,'data_structures::stack_using_queue::Stack::size()'],['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#ae4e183ec8eab778cb243e4ae0b22a0f1',1,'divide_and_conquer::strassens_multiplication::Matrix::size()'],['../df/d8f/classothers_1_1_cache_1_1_l_f_u_cache.html#adbfb2ef7358423fdf1f49d410f55f195',1,'others::Cache::LFUCache::size()'],['../d8/d2e/classothers_1_1_cache_1_1_l_r_u_cache.html#a1b709333874b4633ee02a3661cd042e1',1,'others::Cache::LRUCache::size()'],['../d8/d28/classrange__queries_1_1per_seg_tree.html#a0fe4e431f3e09c274ecd7d2d58dcb865',1,'range_queries::perSegTree::size()']]],
- ['size_5f_145',['size_',['../d9/dde/classbinary__search__tree.html#a07ba32ce1a2af6e357600ac8c8e98dbc',1,'binary_search_tree']]],
- ['size_5ft_146',['size_t',['http://en.cppreference.com/w/cpp/types/size_t.html',0,'std']]],
- ['skip_5flist_2ecpp_147',['skip_list.cpp',['../d0/d5a/skip__list_8cpp.html',1,'']]],
- ['skiplist_148',['SkipList',['../d4/d90/classdata__structures_1_1_skip_list.html',1,'data_structures::SkipList'],['../d4/d90/classdata__structures_1_1_skip_list.html#a7ffc3688725b9d1ec6e5bb881a6e2ae4',1,'data_structures::SkipList::SkipList()']]],
- ['skipws_149',['skipws',['http://en.cppreference.com/w/cpp/io/manip/skipws.html',0,'std']]],
- ['sleep_150',['SLEEP',['../dd/d92/memory__game_8cpp.html#a5bdc30951221eae9c33413ff9eb574f6',1,'memory_game.cpp']]],
- ['sleep_5ffor_151',['sleep_for',['http://en.cppreference.com/w/cpp/thread/sleep_for.html',0,'std::this_thread']]],
- ['sleep_5funtil_152',['sleep_until',['http://en.cppreference.com/w/cpp/thread/sleep_until.html',0,'std::this_thread']]],
- ['slice_153',['slice',['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#a1fcb7db9bdeabd874712ec4f00483d17',1,'divide_and_conquer::strassens_multiplication::Matrix']]],
- ['smallest_5fcircle_2ecpp_154',['smallest_circle.cpp',['../d0/d01/smallest__circle_8cpp.html',1,'']]],
- ['smatch_155',['smatch',['http://en.cppreference.com/w/cpp/regex/match_results.html',0,'std::smatch'],['http://en.cppreference.com/w/cpp/regex/match_results/match_results.html',0,'std::smatch::smatch()']]],
- ['snextc_156',['snextc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_filebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wstringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::stringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wfilebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wstreambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::strstreambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_stringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_streambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::filebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::streambuf::snextc()']]],
- ['snprintf_157',['snprintf',['http://en.cppreference.com/w/cpp/io/c/fprintf.html',0,'std']]],
- ['solution_158',['Solution',['../dd/d4f/class_solution.html',1,'Solution'],['../da/d02/classmachine__learning_1_1aystar__search_1_1_ay_star_search.html#a0a26aa9ad3d73707370d9fe83707aca4',1,'machine_learning::aystar_search::AyStarSearch::Solution()']]],
- ['solve_159',['solve',['../d1/d2a/knight__tour_8cpp.html#aaa47356d98676cf5315d978f741e29c9',1,'backtracking::knight_tour']]],
- ['solvemaze_160',['solveMaze',['../dc/d5a/rat__maze_8cpp.html#ab99107bfb4c6934cd4691868c66c0aa3',1,'backtracking::rat_maze']]],
- ['solvenq_161',['solveNQ',['../d4/d3e/n__queens_8cpp.html#a0dbd7af47d87f0b956609fe9e3288ecb',1,'backtracking::n_queens']]],
- ['solvesudoku_162',['solveSudoku',['../d3/d05/sudoku__solver_8cpp.html#ac911c8bca8556206ff64461b2424866b',1,'backtracking::sudoku_solver']]],
- ['sort_163',['sort',['http://en.cppreference.com/w/cpp/container/forward_list/sort.html',0,'std::forward_list::sort()'],['http://en.cppreference.com/w/cpp/container/list/sort.html',0,'std::list::sort()'],['../d5/dab/structdata__structures_1_1list__array_1_1list.html#a133635ad53bd89e3947ca02448819180',1,'data_structures::list_array::list::sort()'],['http://en.cppreference.com/w/cpp/algorithm/sort.html',0,'std::sort()']]],
- ['sort_20algorithm_20analysis_20best_20case_20worst_20case_20average_20case_164',['Bubble Sort Algorithm Analysis (Best Case - Worst Case - Average Case)',['../d8/d13/bubble__sort_8cpp.html#autotoc_md111',1,'']]],
- ['sort_5fheap_165',['sort_heap',['http://en.cppreference.com/w/cpp/algorithm/sort_heap.html',0,'std']]],
- ['sortcol_166',['sortcol',['../df/d47/fcfs__scheduling_8cpp.html#a18920aa331faf4476b251c8cdb2c2bec',1,'fcfs_scheduling.cpp']]],
- ['sorting_167',['Sorting',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md67',1,'']]],
- ['sorting_168',['sorting',['../d5/d91/namespacesorting.html',1,'']]],
- ['sorting_20algorithm_169',['Sorting Algorithm',['../d5/d4c/group__sorting.html',1,'']]],
- ['sparse_5fmatrix_2ecpp_170',['sparse_matrix.cpp',['../d3/d19/sparse__matrix_8cpp.html',1,'']]],
- ['sparse_5ftable_171',['Sparse_table',['../da/d37/structdata__structures_1_1sparse__table_1_1_sparse__table.html',1,'data_structures::sparse_table']]],
- ['sparse_5ftable_172',['sparse_table',['../d9/d55/namespacesparse__table.html',1,'']]],
- ['sparse_5ftable_2ecpp_173',['sparse_table.cpp',['../d6/d42/data__structures_2sparse__table_8cpp.html',1,'(Global Namespace)'],['../d4/d96/range__queries_2sparse__table_8cpp.html',1,'(Global Namespace)']]],
- ['sphere_5fsurface_5farea_174',['sphere_surface_area',['../dd/d47/namespacemath.html#ab7f29862d30df351c317eedd60a0c656',1,'math']]],
- ['sphere_5fvolume_175',['sphere_volume',['../dd/d47/namespacemath.html#a34d66a77c19ce9b8b3a3d14352b34551',1,'math']]],
- ['spiral_5fprint_2ecpp_176',['spiral_print.cpp',['../db/d07/spiral__print_8cpp.html',1,'']]],
- ['spiralprint_177',['spiralPrint',['../db/d07/spiral__print_8cpp.html#a850d3f55e1a8d227176cdcc67352c197',1,'spiral_print.cpp']]],
- ['spirograph_178',['spirograph',['../da/dd3/namespacespirograph.html',1,'spirograph'],['../da/dd3/namespacespirograph.html#aeca22dbe4563358960e907a40cd3e1ac',1,'spirograph::spirograph()']]],
- ['spirograph_2ecpp_179',['spirograph.cpp',['../da/d77/spirograph_8cpp.html',1,'']]],
- ['splice_180',['splice',['http://en.cppreference.com/w/cpp/container/list/splice.html',0,'std::list']]],
- ['splice_5fafter_181',['splice_after',['http://en.cppreference.com/w/cpp/container/forward_list/splice_after.html',0,'std::forward_list']]],
- ['splitnode_182',['SplitNode',['../d3/d95/classdata__structures_1_1tree__234_1_1_tree234.html#a370b625ca9f16bbef2b65e024ef78ea9',1,'data_structures::tree_234::Tree234']]],
- ['sprintf_183',['sprintf',['http://en.cppreference.com/w/cpp/io/c/fprintf.html',0,'std']]],
- ['sputbackc_184',['sputbackc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_filebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wstringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::stringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wfilebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wstreambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::strstreambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_stringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_streambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::filebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::streambuf::sputbackc()']]],
- ['sputc_185',['sputc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_filebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wstringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::stringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wfilebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wstreambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::strstreambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_stringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_streambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::filebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::streambuf::sputc()']]],
- ['sputn_186',['sputn',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_filebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wstringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::stringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wfilebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wstreambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::strstreambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_stringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_streambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::filebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::streambuf::sputn()']]],
- ['sqrt_187',['Sqrt',['../da/d24/sqrt__double_8cpp.html#ae662282ad0740d2063ac404ca3bd74fc',1,'sqrt_double.cpp']]],
- ['sqrt_188',['sqrt',['http://en.cppreference.com/w/cpp/numeric/math/sqrt.html',0,'std']]],
- ['sqrt_5fdouble_2ecpp_189',['sqrt_double.cpp',['../da/d24/sqrt__double_8cpp.html',1,'']]],
- ['square_190',['square',['../d2/d58/neural__network_8cpp.html#a45d3e30406712ada3d9713ece3c1b153',1,'machine_learning::neural_network::util_functions']]],
- ['square_5farea_191',['square_area',['../dd/d47/namespacemath.html#a971ce57e368f2f631cf1f4ff3f864049',1,'math']]],
- ['square_5fperimeter_192',['square_perimeter',['../dd/d47/namespacemath.html#a9236348755183644f1225e162d01ab14',1,'math']]],
- ['srand_193',['srand',['http://en.cppreference.com/w/cpp/numeric/random/srand.html',0,'std']]],
- ['sregex_5fiterator_194',['sregex_iterator',['http://en.cppreference.com/w/cpp/regex/regex_iterator.html',0,'std::sregex_iterator'],['http://en.cppreference.com/w/cpp/regex/regex_iterator/regex_iterator.html',0,'std::sregex_iterator::sregex_iterator()']]],
- ['sregex_5ftoken_5fiterator_195',['sregex_token_iterator',['http://en.cppreference.com/w/cpp/regex/regex_token_iterator.html',0,'std::sregex_token_iterator'],['http://en.cppreference.com/w/cpp/regex/regex_token_iterator/regex_token_iterator.html',0,'std::sregex_token_iterator::sregex_token_iterator()']]],
- ['sret_5finit_196',['sret_init',['../d9/d35/classrange__queries_1_1heavy__light__decomposition_1_1_s_g.html#aa7f93971a9f891e0bbb7023081f379d5',1,'range_queries::heavy_light_decomposition::SG']]],
- ['sscanf_197',['sscanf',['http://en.cppreference.com/w/cpp/io/c/fscanf.html',0,'std']]],
- ['ssub_5fmatch_198',['ssub_match',['http://en.cppreference.com/w/cpp/regex/sub_match.html',0,'std::ssub_match'],['http://en.cppreference.com/w/cpp/regex/sub_match/sub_match.html',0,'std::ssub_match::ssub_match()']]],
- ['st_199',['ST',['../da/d37/structdata__structures_1_1sparse__table_1_1_sparse__table.html#ad36b9a20fed47b068e407008c04e9f81',1,'data_structures::sparse_table::Sparse_table']]],
- ['stable_5fpartition_200',['stable_partition',['http://en.cppreference.com/w/cpp/algorithm/stable_partition.html',0,'std']]],
- ['stable_5fsort_201',['stable_sort',['http://en.cppreference.com/w/cpp/algorithm/stable_sort.html',0,'std']]],
- ['stack_202',['Stack',['../d2/dc8/classdata__structures_1_1_stack.html',1,'data_structures::Stack< T >'],['../db/d5b/structdata__structures_1_1stack__using__queue_1_1_stack.html',1,'data_structures::stack_using_queue::Stack'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html',1,'others::postfix_expression::Stack'],['../d2/dc8/classdata__structures_1_1_stack.html#a8cb0602c8a9c1603d0315938177ecc6a',1,'data_structures::Stack::Stack()']]],
- ['stack_203',['stack',['../d1/dc2/classstack.html',1,'stack< ValueType >'],['http://en.cppreference.com/w/cpp/container/stack.html',0,'std::stack< T >'],['../d2/dc8/classdata__structures_1_1_stack.html#a3f912a0e9bed5b24b206584e3010dce3',1,'data_structures::Stack::stack'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html#af06360122e20ce2ba32c574a27a20ba1',1,'others::postfix_expression::Stack::stack'],['http://en.cppreference.com/w/cpp/container/stack/stack.html',0,'std::stack::stack()'],['../dc/dc5/paranthesis__matching_8cpp.html#aa37d24a036d239b3b528f13b9de880c7',1,'stack: paranthesis_matching.cpp']]],
- ['stack_2ehpp_204',['stack.hpp',['../df/d47/stack_8hpp.html',1,'']]],
- ['stack_5fidx_205',['stack_idx',['../dc/dc5/paranthesis__matching_8cpp.html#af4c937d823c412d99fbe60c99dbf0a4f',1,'paranthesis_matching.cpp']]],
- ['stack_5flinkedlist_206',['stack_linkedList',['../d2/dc4/classstack__linked_list.html',1,'']]],
- ['stack_5fusing_5fqueue_207',['stack_using_queue',['../df/d1c/namespacestack__using__queue.html',1,'']]],
- ['stackindex_208',['stackIndex',['../d2/dc8/classdata__structures_1_1_stack.html#a71afc94746d47fb2c0c4fa4b612edee6',1,'data_structures::Stack']]],
- ['stacksize_209',['stackSize',['../d2/dc8/classdata__structures_1_1_stack.html#a88a10062c0662a385f172669f2f19b86',1,'data_structures::Stack']]],
- ['stacktop_210',['stackTop',['../d1/dc2/classstack.html#aefb3dac828e32b4ec014ff4b5d43a6b8',1,'stack::stackTop'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html#a6ae98710503b894b843d01cb69d5490c',1,'others::postfix_expression::Stack::stackTop']]],
- ['stairs_5fpattern_2ecpp_211',['stairs_pattern.cpp',['../d5/def/stairs__pattern_8cpp.html',1,'']]],
- ['standard_5fdeviation_212',['standard_deviation',['../da/d19/classprobability_1_1geometric__dist_1_1geometric__distribution.html#a0a10c512e13dd3a052e1c6d7f4d6f0f2',1,'probability::geometric_dist::geometric_distribution']]],
- ['standard_5finvsqrt_213',['Standard_InvSqrt',['../d6/db8/inv__sqrt_8cpp.html#aa2703e5cf3fecde8becd9066b9666b97',1,'inv_sqrt.cpp']]],
- ['standards_214',['Our Standards',['../d3/dd7/md__c_o_d_e___o_f___c_o_n_d_u_c_t.html#autotoc_md6',1,'']]],
- ['startwith_215',['startwith',['../d3/d26/classdata__structures_1_1trie__using__hashmap_1_1_trie.html#af3aee573fbabd2c1510c0f74f842dd17',1,'data_structures::trie_using_hashmap::Trie']]],
- ['state_216',['state',['http://en.cppreference.com/w/cpp/locale/wbuffer_convert/state.html',0,'std::wbuffer_convert::state()'],['http://en.cppreference.com/w/cpp/locale/wstring_convert/state.html',0,'std::wstring_convert::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::wstreampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::u16streampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::streampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::fpos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::u32streampos::state()']]],
- ['state_5ftype_217',['state_type',['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_byname::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf16::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf8::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf8_utf16::state_type']]],
- ['static_20code_20analyzer_218',['Static Code Analyzer',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md38',1,'']]],
- ['static_5fpointer_5fcast_219',['static_pointer_cast',['http://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_cast.html',0,'std']]],
- ['statistics_220',['statistics',['../d2/dcf/namespacestatistics.html',1,'']]],
- ['stats_5fcomputer1_221',['stats_computer1',['../d7/d7c/classstatistics_1_1stats__computer1.html',1,'statistics']]],
- ['stats_5fcomputer2_222',['stats_computer2',['../d8/dab/classstatistics_1_1stats__computer2.html',1,'statistics']]],
- ['std_223',['std',['../d8/dcc/namespacestd.html',1,'std'],['../d7/d7c/classstatistics_1_1stats__computer1.html#af57e942d49f4fd70f059f224b4ac07e1',1,'statistics::stats_computer1::std()'],['../d8/dab/classstatistics_1_1stats__computer2.html#acf2e84df4fc386bb3295016ef8fd156e',1,'statistics::stats_computer2::std()']]],
- ['std_3a_3achrono_224',['chrono',['http://en.cppreference.com/w/d4/d0c/namespacestd_1_1chrono.html',0,'std']]],
- ['std_3a_3aexperimental_225',['experimental',['http://en.cppreference.com/w/de/d97/namespacestd_1_1experimental.html',0,'std']]],
- ['std_3a_3aregex_5fconstants_226',['regex_constants',['http://en.cppreference.com/w/db/da4/namespacestd_1_1regex__constants.html',0,'std']]],
- ['std_3a_3arel_5fops_227',['rel_ops',['http://en.cppreference.com/w/da/d42/namespacestd_1_1rel__ops.html',0,'std']]],
- ['std_3a_3athis_5fthread_228',['this_thread',['http://en.cppreference.com/w/d7/dbf/namespacestd_1_1this__thread.html',0,'std']]],
- ['stddev_229',['stddev',['http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/params.html',0,'std::normal_distribution']]],
- ['steady_5fclock_230',['steady_clock',['http://en.cppreference.com/w/cpp/chrono/steady_clock.html',0,'std::chrono']]],
- ['step_5fith_231',['step_ith',['../d8/d61/radix__sort2_8cpp.html#a98ead7d43b11505398daf9a894f122f9',1,'sorting::radix_sort']]],
- ['stod_232',['stod',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
- ['stof_233',['stof',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
- ['stoi_234',['stoi',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
- ['stol_235',['stol',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
- ['stold_236',['stold',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
- ['stoll_237',['stoll',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
- ['stooge_5fsort_2ecpp_238',['stooge_sort.cpp',['../d4/d4f/stooge__sort_8cpp.html',1,'']]],
- ['stoogesort_239',['stoogeSort',['../d4/d4f/stooge__sort_8cpp.html#ac23852832437dc68327efe9b1da2d91b',1,'stooge_sort.cpp']]],
- ['store_240',['store',['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',0,'std::atomic']]],
- ['store_20the_20address_20of_20parent_20nodes_241',['Method 1: Use parent pointer (store the address of parent nodes)',['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md91',1,'']]],
- ['stoul_242',['stoul',['http://en.cppreference.com/w/cpp/string/basic_string/stoul.html',0,'std']]],
- ['stoull_243',['stoull',['http://en.cppreference.com/w/cpp/string/basic_string/stoul.html',0,'std']]],
- ['str_244',['str',['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::match_results::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::basic_ostringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::wstringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::wsmatch::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::wcsub_match::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::ostringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::stringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::smatch::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::stringstream::str()'],['http://en.cppreference.com/w/cpp/io/strstreambuf/str.html',0,'std::strstreambuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::wcmatch::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::wssub_match::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::csub_match::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::basic_stringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::ssub_match::str()'],['http://en.cppreference.com/w/cpp/io/strstream/str.html',0,'std::strstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::basic_stringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::wostringstream::str()'],['http://en.cppreference.com/w/cpp/io/istrstream/str.html',0,'std::istrstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::basic_istringstream::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::cmatch::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::istringstream::str()'],['http://en.cppreference.com/w/cpp/io/ostrstream/str.html',0,'std::ostrstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::wstringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::wistringstream::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::sub_match::str()']]],
- ['strand_245',['strand',['../d8/d1d/namespacestrand.html',1,'']]],
- ['strand_5fsort_246',['strand_sort',['../dc/dd9/strand__sort_8cpp.html#a2bea2fe5dd38ed63610fdeaddf5785cd',1,'sorting::strand']]],
- ['strand_5fsort_2ecpp_247',['strand_sort.cpp',['../dc/dd9/strand__sort_8cpp.html',1,'']]],
- ['strassens_5fmultiplication_248',['strassens_multiplication',['../d3/d91/namespacestrassens__multiplication.html',1,'strassens_multiplication'],['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#a87c2ed8f19bda2ad21ee4cbed32c394a',1,'divide_and_conquer::strassens_multiplication::Matrix::strassens_multiplication()']]],
- ['strcat_249',['strcat',['http://en.cppreference.com/w/cpp/string/byte/strcat.html',0,'std']]],
- ['strchr_250',['strchr',['http://en.cppreference.com/w/cpp/string/byte/strchr.html',0,'std']]],
- ['strcmp_251',['strcmp',['http://en.cppreference.com/w/cpp/string/byte/strcmp.html',0,'std']]],
- ['strcoll_252',['strcoll',['http://en.cppreference.com/w/cpp/string/byte/strcoll.html',0,'std']]],
- ['strcpy_253',['strcpy',['http://en.cppreference.com/w/cpp/string/byte/strcpy.html',0,'std']]],
- ['strcspn_254',['strcspn',['http://en.cppreference.com/w/cpp/string/byte/strcspn.html',0,'std']]],
- ['streambuf_255',['streambuf',['http://en.cppreference.com/w/cpp/io/basic_streambuf.html',0,'std::streambuf'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/basic_streambuf.html',0,'std::streambuf::streambuf()']]],
- ['streamoff_256',['streamoff',['http://en.cppreference.com/w/cpp/io/streamoff.html',0,'std']]],
- ['streampos_257',['streampos',['http://en.cppreference.com/w/cpp/io/fpos.html',0,'std']]],
- ['streamsize_258',['streamsize',['http://en.cppreference.com/w/cpp/io/streamsize.html',0,'std']]],
- ['strerror_259',['strerror',['http://en.cppreference.com/w/cpp/string/byte/strerror.html',0,'std']]],
- ['strftime_260',['strftime',['http://en.cppreference.com/w/cpp/chrono/c/strftime.html',0,'std']]],
- ['string_261',['string',['http://en.cppreference.com/w/cpp/string/basic_string.html',0,'std::string'],['../d6/dd6/namespacestring.html',1,'string'],['http://en.cppreference.com/w/cpp/string/basic_string/basic_string.html',0,'std::string::string()']]],
- ['string_5ffibonacci_2ecpp_262',['string_fibonacci.cpp',['../de/d47/string__fibonacci_8cpp.html',1,'']]],
- ['string_5fsearch_263',['string_search',['../d9/d03/namespacestring__search.html',1,'']]],
- ['string_5ftype_264',['string_type',['http://en.cppreference.com/w/cpp/locale/collate.html',0,'std::collate::string_type'],['http://en.cppreference.com/w/cpp/locale/collate.html',0,'std::collate_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/messages.html',0,'std::messages::string_type'],['http://en.cppreference.com/w/cpp/locale/messages.html',0,'std::messages_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/money_get.html',0,'std::money_get::string_type'],['http://en.cppreference.com/w/cpp/locale/money_put.html',0,'std::money_put::string_type'],['http://en.cppreference.com/w/cpp/locale/moneypunct.html',0,'std::moneypunct::string_type'],['http://en.cppreference.com/w/cpp/locale/moneypunct.html',0,'std::moneypunct_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/numpunct.html',0,'std::numpunct::string_type'],['http://en.cppreference.com/w/cpp/locale/numpunct.html',0,'std::numpunct_byname::string_type']]],
- ['stringbuf_265',['stringbuf',['http://en.cppreference.com/w/cpp/io/basic_stringbuf.html',0,'std::stringbuf'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/basic_stringbuf.html',0,'std::stringbuf::stringbuf()']]],
- ['strings_266',['Strings',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md68',1,'']]],
- ['strings_267',['strings',['../df/dcb/namespacestrings.html',1,'']]],
- ['strings_3a_3aboyer_5fmoore_268',['boyer_moore',['../d0/dbc/namespacestrings_1_1boyer__moore.html',1,'strings']]],
- ['stringstream_269',['stringstream',['http://en.cppreference.com/w/cpp/io/basic_stringstream.html',0,'std::stringstream'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/basic_stringstream.html',0,'std::stringstream::stringstream()']]],
- ['strkey_270',['STRKEY',['../d6/d4e/namespaceciphers.html#ab9aec0ccf4b6809f652bb540be87c216',1,'ciphers']]],
- ['strlen_271',['strlen',['http://en.cppreference.com/w/cpp/string/byte/strlen.html',0,'std']]],
- ['strncat_272',['strncat',['http://en.cppreference.com/w/cpp/string/byte/strncat.html',0,'std']]],
- ['strncmp_273',['strncmp',['http://en.cppreference.com/w/cpp/string/byte/strncmp.html',0,'std']]],
- ['strncpy_274',['strncpy',['http://en.cppreference.com/w/cpp/string/byte/strncpy.html',0,'std']]],
- ['strpbrk_275',['strpbrk',['http://en.cppreference.com/w/cpp/string/byte/strpbrk.html',0,'std']]],
- ['strrchr_276',['strrchr',['http://en.cppreference.com/w/cpp/string/byte/strrchr.html',0,'std']]],
- ['strspn_277',['strspn',['http://en.cppreference.com/w/cpp/string/byte/strspn.html',0,'std']]],
- ['strstr_278',['strstr',['http://en.cppreference.com/w/cpp/string/byte/strstr.html',0,'std']]],
- ['strstream_279',['strstream',['http://en.cppreference.com/w/cpp/io/strstream.html',0,'std::strstream'],['http://en.cppreference.com/w/cpp/io/strstream/strstream.html',0,'std::strstream::strstream()']]],
- ['strstreambuf_280',['strstreambuf',['http://en.cppreference.com/w/cpp/io/strstreambuf.html',0,'std::strstreambuf'],['http://en.cppreference.com/w/cpp/io/strstreambuf/strstreambuf.html',0,'std::strstreambuf::strstreambuf()']]],
- ['strtod_281',['strtod',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
- ['strtof_282',['strtof',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
- ['strtoimax_283',['strtoimax',['http://en.cppreference.com/w/cpp/string/byte/strtoimax.html',0,'std']]],
- ['strtok_284',['strtok',['http://en.cppreference.com/w/cpp/string/byte/strtok.html',0,'std']]],
- ['strtol_285',['strtol',['http://en.cppreference.com/w/cpp/string/byte/strtol.html',0,'std']]],
- ['strtold_286',['strtold',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
- ['strtoll_287',['strtoll',['http://en.cppreference.com/w/cpp/string/byte/strtol.html',0,'std']]],
- ['strtoul_288',['strtoul',['http://en.cppreference.com/w/cpp/string/byte/strtoul.html',0,'std']]],
- ['strtoull_289',['strtoull',['http://en.cppreference.com/w/cpp/string/byte/strtoul.html',0,'std']]],
- ['strtoumax_290',['strtoumax',['http://en.cppreference.com/w/cpp/string/byte/strtoimax.html',0,'std']]],
- ['structure_20of_20a_20program_291',['Typical structure of a program',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md31',1,'']]],
- ['structure_20used_292',['Data Structure used',['../d3/db3/lru__cache_8cpp.html#autotoc_md98',1,'']]],
- ['structures_293',['Data Structures',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49',1,'']]],
- ['struzik_5fsearch_294',['struzik_search',['../d8/d8a/exponential__search_8cpp.html#af421bf4b7b95f20ac86c233adfdb9208',1,'exponential_search.cpp']]],
- ['strxfrm_295',['strxfrm',['http://en.cppreference.com/w/cpp/string/byte/strxfrm.html',0,'std']]],
- ['student_5ft_5fdistribution_296',['student_t_distribution',['http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution.html',0,'std::student_t_distribution'],['http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/student_t_distribution.html',0,'std::student_t_distribution::student_t_distribution()']]],
- ['style_20convention_297',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]],
- ['style_20conventions_298',['Code style conventions',['../dc/d64/md__coding_guidelines.html#autotoc_md20',1,'']]],
- ['sub_5fmatch_299',['sub_match',['http://en.cppreference.com/w/cpp/regex/sub_match.html',0,'std::sub_match'],['http://en.cppreference.com/w/cpp/regex/sub_match/sub_match.html',0,'std::sub_match::sub_match()']]],
- ['subarray_5fsum_300',['subarray_sum',['../df/d74/namespacesubarray__sum.html',1,'subarray_sum'],['../df/d94/subarray__sum_8cpp.html#af5687bbd9faf927fbd363c71e0baba5e',1,'backtracking::subarray_sum::subarray_sum()']]],
- ['subarray_5fsum_2ecpp_301',['subarray_sum.cpp',['../df/d94/subarray__sum_8cpp.html',1,'']]],
- ['sublist_5fsearch_302',['sublist_search',['../d9/def/namespacesublist__search.html',1,'']]],
- ['sublist_5fsearch_2ecpp_303',['sublist_search.cpp',['../d5/d45/sublist__search_8cpp.html',1,'']]],
- ['sublistsearch_304',['sublistSearch',['../d5/d45/sublist__search_8cpp.html#a4faee403e2758aaab682ed6622ae218c',1,'search::sublist_search']]],
- ['subset_5fsum_305',['subset_sum',['../dc/d3a/namespacesubset__sum.html',1,'']]],
- ['subset_5fsum_2ecpp_306',['subset_sum.cpp',['../d0/dfe/backtracking_2subset__sum_8cpp.html',1,'(Global Namespace)'],['../d6/d80/dynamic__programming_2subset__sum_8cpp.html',1,'(Global Namespace)']]],
- ['subset_5fsum_5fproblem_307',['subset_sum_problem',['../d6/d80/dynamic__programming_2subset__sum_8cpp.html#ac94e6c0dee11278ac0a5491f1b9a4a50',1,'dynamic_programming::subset_sum']]],
- ['subset_5fsum_5frecursion_308',['subset_sum_recursion',['../d6/d80/dynamic__programming_2subset__sum_8cpp.html#a280fcfb2f6fe49a31c4da572e7032607',1,'dynamic_programming::subset_sum']]],
- ['subsets_309',['Subsets',['../de/d95/namespace_subsets.html',1,'']]],
- ['substr_310',['substr',['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::basic_string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::wstring::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::u16string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::u32string::substr()']]],
- ['subtract_5fwith_5fcarry_5fengine_311',['subtract_with_carry_engine',['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine.html',0,'std::subtract_with_carry_engine'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine.html',0,'std::subtract_with_carry_engine::subtract_with_carry_engine()']]],
- ['subtree_312',['subtree',['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md89',1,'Case 1: The given node has the right node/subtree'],['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md90',1,'Case 2: The given node does not have a right node/subtree']]],
- ['succ_313',['succ',['../de/d9d/classdata__structures_1_1linked__list_1_1link.html#af6bbeb9bfde1683ba917071edeedd5c3',1,'data_structures::linked_list::link']]],
- ['successive_5fapproximation_2ecpp_314',['successive_approximation.cpp',['../df/dc8/successive__approximation_8cpp.html',1,'']]],
- ['sudoku_5fsolver_315',['sudoku_solver',['../d8/d9f/namespacesudoku__solver.html',1,'']]],
- ['sudoku_5fsolver_2ecpp_316',['sudoku_solver.cpp',['../d3/d05/sudoku__solver_8cpp.html',1,'']]],
- ['suffix_317',['suffix',['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::match_results::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::wsmatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::smatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::wcmatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::cmatch::suffix()']]],
- ['suggestautocomplete_318',['SuggestAutocomplete',['../d0/d5f/classoperations__on__datastructures_1_1trie__operations_1_1_tnode.html#a097913c4badec2b60d50a171ecc299fe',1,'operations_on_datastructures::trie_operations::Tnode']]],
- ['suggestfreqautocomplete_319',['SuggestFreqAutocomplete',['../d0/d5f/classoperations__on__datastructures_1_1trie__operations_1_1_tnode.html#a9e556f52c837190ecf4265b1f05cfe9c',1,'operations_on_datastructures::trie_operations::Tnode']]],
- ['sum_320',['sum',['../de/d0d/classrange__queries_1_1fenwick__tree.html#a1fa0559d987fde0044761b17b35f5abd',1,'range_queries::fenwick_tree::sum()'],['../d8/d77/namespacemachine__learning.html#a6f1c98c016ad34ff3d9f39372161bd35',1,'machine_learning::sum()']]],
- ['sum_5fof_5fbinomial_5fcoefficient_2ecpp_321',['sum_of_binomial_coefficient.cpp',['../d4/d9d/sum__of__binomial__coefficient_8cpp.html',1,'']]],
- ['sum_5fof_5fdigits_322',['sum_of_digits',['../d4/d83/sum__of__digits_8cpp.html#a4619c78b6ad985713024f930f31c4395',1,'sum_of_digits.cpp']]],
- ['sum_5fof_5fdigits_2ecpp_323',['sum_of_digits.cpp',['../d4/d83/sum__of__digits_8cpp.html',1,'']]],
- ['sum_5fof_5fdivisor_324',['sum_of_divisor',['../dd/d47/namespacemath.html#af05567415a9ea36c254b54e3d5a2152a',1,'math']]],
- ['sum_5frange_325',['sum_range',['../de/d0d/classrange__queries_1_1fenwick__tree.html#a0914a4b1401a7c427de91c92885724fe',1,'range_queries::fenwick_tree']]],
- ['summary_326',['summary',['../d4/df4/classmachine__learning_1_1neural__network_1_1_neural_network.html#a61d30113d13304c664057118b92a5931',1,'machine_learning::neural_network::NeuralNetwork']]],
- ['sungetc_327',['sungetc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_filebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wstringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::stringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wfilebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wstreambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::strstreambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_stringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_streambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::filebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::streambuf::sungetc()']]],
- ['swap_328',['swap',['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::fstream::swap()'],['http://en.cppreference.com/w/cpp/container/vector/swap.html',0,'std::vector::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::match_results::swap()'],['http://en.cppreference.com/w/cpp/container/multiset/swap.html',0,'std::multiset::swap()'],['http://en.cppreference.com/w/cpp/memory/weak_ptr/swap.html',0,'std::weak_ptr::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wostream::swap()'],['http://en.cppreference.com/w/cpp/container/set/swap.html',0,'std::set::swap()'],['http://en.cppreference.com/w/cpp/thread/unique_lock/swap.html',0,'std::unique_lock::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ostringstream::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::regex::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_map/swap.html',0,'std::unordered_map::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::basic_regex::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_filebuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wstringbuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ios::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::wsmatch::swap()'],['http://en.cppreference.com/w/cpp/utility/tuple/swap.html',0,'std::tuple::swap()'],['http://en.cppreference.com/w/cpp/memory/shared_ptr/swap.html',0,'std::shared_ptr::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_fstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::stringbuf::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::wregex::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::smatch::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wfilebuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::iostream::swap()'],['http://en.cppreference.com/w/cpp/container/stack/swap.html',0,'std::stack::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wistream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wstreambuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::stringstream::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_multimap/swap.html',0,'std::unordered_multimap::swap()'],['http://en.cppreference.com/w/cpp/memory/unique_ptr/swap.html',0,'std::unique_ptr::swap()'],['http://en.cppreference.com/w/cpp/container/forward_list/swap.html',0,'std::forward_list::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::strstreambuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostream::swap()'],['http://en.cppreference.com/w/cpp/thread/shared_lock/swap.html',0,'std::shared_lock::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::wcmatch::swap()'],['http://en.cppreference.com/w/cpp/utility/pair/swap.html',0,'std::pair::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wifstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_istream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_stringbuf::swap()'],['http://en.cppreference.com/w/cpp/container/deque/swap.html',0,'std::deque::swap()'],['http://en.cppreference.com/w/cpp/thread/promise/swap.html',0,'std::promise::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::strstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_streambuf::swap()'],['http://en.cppreference.com/w/cpp/container/queue/swap.html',0,'std::queue::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_stringstream::swap()'],['http://en.cppreference.com/w/cpp/thread/thread/swap.html',0,'std::thread::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::basic_string::swap()'],['http://en.cppreference.com/w/cpp/container/priority_queue/swap.html',0,'std::priority_queue::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wostringstream::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::wstring::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istrstream::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_multiset/swap.html',0,'std::unordered_multiset::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ostream::swap()'],['http://en.cppreference.com/w/cpp/utility/functional/function/swap.html',0,'std::function::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::filebuf::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::u16string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wiostream::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::u32string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_istringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ifstream::swap()'],['http://en.cppreference.com/w/cpp/container/list/swap.html',0,'std::list::swap()'],['http://en.cppreference.com/w/cpp/container/map/swap.html',0,'std::map::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::cmatch::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::streambuf::swap()'],['http://en.cppreference.com/w/cpp/experimental/optional/swap.html',0,'std::experimental::optional::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostrstream::swap()'],['http://en.cppreference.com/w/cpp/thread/packaged_task/swap.html',0,'std::packaged_task::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_set/swap.html',0,'std::unordered_set::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wfstream::swap()'],['http://en.cppreference.com/w/cpp/container/multimap/swap.html',0,'std::multimap::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_iostream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wstringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wistringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ifstream::swap()'],['http://en.cppreference.com/w/cpp/container/array/swap.html',0,'std::array::swap()'],['http://en.cppreference.com/w/cpp/algorithm/swap.html',0,'std::swap(T... args)']]],
- ['swap_5franges_329',['swap_ranges',['http://en.cppreference.com/w/cpp/algorithm/swap_ranges.html',0,'std']]],
- ['swprintf_330',['swprintf',['http://en.cppreference.com/w/cpp/io/c/fwprintf.html',0,'std']]],
- ['swscanf_331',['swscanf',['http://en.cppreference.com/w/cpp/io/c/fwscanf.html',0,'std']]],
- ['sync_332',['sync',['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::fstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_filebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wstringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_fstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::stringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wfilebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::iostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wistream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wstreambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::stringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::strstreambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wifstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_istream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_stringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::strstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_streambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_stringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istrstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::filebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wiostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_istringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_ifstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::streambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wfstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_iostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wstringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wistringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::ifstream::sync()']]],
- ['sync_5fwith_5fstdio_333',['sync_with_stdio',['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::fstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ios::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_fstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::iostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ios_base::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wistream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::stringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wifstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_istream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::strstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_stringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istrstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wiostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_istringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ifstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostrstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wfstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_iostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wstringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wistringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ifstream::sync_with_stdio()']]],
- ['system_334',['system',['http://en.cppreference.com/w/cpp/utility/program/system.html',0,'std']]],
- ['system_5fcategory_335',['system_category',['http://en.cppreference.com/w/cpp/error/system_category.html',0,'std']]],
- ['system_5fclock_336',['system_clock',['http://en.cppreference.com/w/cpp/chrono/system_clock.html',0,'std::chrono']]],
- ['system_5ferror_337',['system_error',['http://en.cppreference.com/w/cpp/error/system_error.html',0,'std::system_error'],['http://en.cppreference.com/w/cpp/error/system_error/system_error.html',0,'std::system_error::system_error()']]]
+ ['sieve_131',['sieve',['../dd/d47/namespacemath.html#a91366864111e1fac29722ca45e02ea8f',1,'math::sieve()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a22be949d160b26361f7e323310f7fa0c',1,'math::sieve_of_eratosthenes::sieve()']]],
+ ['sieve_5fof_5feratosthenes_132',['sieve_of_eratosthenes',['../d2/db0/namespacesieve__of__eratosthenes.html',1,'']]],
+ ['sieve_5fof_5feratosthenes_2ecpp_133',['sieve_of_eratosthenes.cpp',['../d8/ddf/sieve__of__eratosthenes_8cpp.html',1,'']]],
+ ['sieveoferatosthenes_134',['SieveOfEratosthenes',['../db/d0d/prime__factorization_8cpp.html#affe577b9bce8f604f5e2f861c63c7099',1,'prime_factorization.cpp']]],
+ ['sig2hex_135',['sig2hex',['../d5/d96/md5_8cpp.html#aaee69c6136a841043f956de32116e348',1,'hashing::md5::sig2hex()'],['../d8/d7a/sha1_8cpp.html#aada0803ef851d831b7a290a924e3c228',1,'hashing::sha1::sig2hex()']]],
+ ['sig_5fatomic_5ft_136',['sig_atomic_t',['http://en.cppreference.com/w/cpp/utility/program/sig_atomic_t.html',0,'std']]],
+ ['sigmoid_137',['sigmoid',['../d2/d58/neural__network_8cpp.html#a23aa9d32bcbcd65cfc85f0a41e2afadc',1,'machine_learning::neural_network::activations']]],
+ ['signal_138',['signal',['http://en.cppreference.com/w/cpp/utility/program/signal.html',0,'std']]],
+ ['signaling_5fnan_139',['signaling_NaN',['http://en.cppreference.com/w/cpp/types/numeric_limits/signaling_NaN.html',0,'std::numeric_limits']]],
+ ['signbit_140',['signbit',['http://en.cppreference.com/w/cpp/numeric/math/signbit.html',0,'std']]],
+ ['simpson_5fmethod_141',['simpson_method',['../d3/d6d/namespacesimpson__method.html',1,'']]],
+ ['sin_142',['sin',['http://en.cppreference.com/w/cpp/numeric/math/sin.html',0,'std']]],
+ ['single_5fpredict_143',['single_predict',['../d4/df4/classmachine__learning_1_1neural__network_1_1_neural_network.html#a3b9eac1824d365dce715fb17c33cb96f',1,'machine_learning::neural_network::NeuralNetwork']]],
+ ['sinh_144',['sinh',['http://en.cppreference.com/w/cpp/numeric/math/sinh.html',0,'std']]],
+ ['size_145',['size',['../dd/d95/classdata__structures_1_1_segment_tree.html#a167fd91b68048e49e97859a8947690f3',1,'data_structures::SegmentTree::size'],['../d1/dc2/classstack.html#a0a6b2b93ec970296940798ee98a5072e',1,'stack::size'],['../d5/d95/structdata__structures_1_1treap_1_1_treap.html#af5f0b8263339485989f8a02ae026114c',1,'data_structures::treap::Treap::size'],['http://en.cppreference.com/w/cpp/container/dynarray/size.html',0,'std::dynarray::size()'],['http://en.cppreference.com/w/cpp/container/vector/size.html',0,'std::vector::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::match_results::size()'],['http://en.cppreference.com/w/cpp/container/multiset/size.html',0,'std::multiset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::string::size()'],['http://en.cppreference.com/w/cpp/container/set/size.html',0,'std::set::size()'],['http://en.cppreference.com/w/cpp/container/unordered_map/size.html',0,'std::unordered_map::size()'],['http://en.cppreference.com/w/cpp/utility/initializer_list/size.html',0,'std::initializer_list::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::wsmatch::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::smatch::size()'],['http://en.cppreference.com/w/cpp/container/stack/size.html',0,'std::stack::size()'],['http://en.cppreference.com/w/cpp/container/unordered_multimap/size.html',0,'std::unordered_multimap::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::wcmatch::size()'],['http://en.cppreference.com/w/cpp/container/deque/size.html',0,'std::deque::size()'],['http://en.cppreference.com/w/cpp/container/queue/size.html',0,'std::queue::size()'],['http://en.cppreference.com/w/cpp/utility/bitset/size.html',0,'std::bitset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::basic_string::size()'],['http://en.cppreference.com/w/cpp/container/priority_queue/size.html',0,'std::priority_queue::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::wstring::size()'],['http://en.cppreference.com/w/cpp/container/unordered_multiset/size.html',0,'std::unordered_multiset::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::u16string::size()'],['http://en.cppreference.com/w/cpp/string/basic_string/size.html',0,'std::u32string::size()'],['http://en.cppreference.com/w/cpp/container/list/size.html',0,'std::list::size()'],['http://en.cppreference.com/w/cpp/container/map/size.html',0,'std::map::size()'],['http://en.cppreference.com/w/cpp/regex/match_results/size.html',0,'std::cmatch::size()'],['http://en.cppreference.com/w/cpp/numeric/random/seed_seq/size.html',0,'std::seed_seq::size()'],['http://en.cppreference.com/w/cpp/container/unordered_set/size.html',0,'std::unordered_set::size()'],['http://en.cppreference.com/w/cpp/container/multimap/size.html',0,'std::multimap::size()'],['http://en.cppreference.com/w/cpp/container/array/size.html',0,'std::array::size()'],['../d9/dde/classbinary__search__tree.html#a564fe43e7e8f7ecb6f10667a70fbc6f3',1,'binary_search_tree::size()'],['../d9/dae/classdata__structures_1_1_bitset.html#a2f1f44d6a12b0de4aaf242872b1c7b54',1,'data_structures::Bitset::size()'],['../dd/d1f/classdsu.html#a1c24228b0f2f49220133fb8c3566a55c',1,'dsu::size()'],['../db/d5b/structdata__structures_1_1stack__using__queue_1_1_stack.html#ac0ddec9ab8f778dad23ec446d7a77b39',1,'data_structures::stack_using_queue::Stack::size()'],['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#ae4e183ec8eab778cb243e4ae0b22a0f1',1,'divide_and_conquer::strassens_multiplication::Matrix::size()'],['../df/d8f/classothers_1_1_cache_1_1_l_f_u_cache.html#adbfb2ef7358423fdf1f49d410f55f195',1,'others::Cache::LFUCache::size()'],['../d8/d2e/classothers_1_1_cache_1_1_l_r_u_cache.html#a1b709333874b4633ee02a3661cd042e1',1,'others::Cache::LRUCache::size()'],['../d8/d28/classrange__queries_1_1per_seg_tree.html#a0fe4e431f3e09c274ecd7d2d58dcb865',1,'range_queries::perSegTree::size()']]],
+ ['size_5f_146',['size_',['../d9/dde/classbinary__search__tree.html#a07ba32ce1a2af6e357600ac8c8e98dbc',1,'binary_search_tree']]],
+ ['size_5ft_147',['size_t',['http://en.cppreference.com/w/cpp/types/size_t.html',0,'std']]],
+ ['skip_5flist_2ecpp_148',['skip_list.cpp',['../d0/d5a/skip__list_8cpp.html',1,'']]],
+ ['skiplist_149',['SkipList',['../d4/d90/classdata__structures_1_1_skip_list.html',1,'data_structures::SkipList'],['../d4/d90/classdata__structures_1_1_skip_list.html#a7ffc3688725b9d1ec6e5bb881a6e2ae4',1,'data_structures::SkipList::SkipList()']]],
+ ['skipws_150',['skipws',['http://en.cppreference.com/w/cpp/io/manip/skipws.html',0,'std']]],
+ ['sleep_151',['SLEEP',['../dd/d92/memory__game_8cpp.html#a5bdc30951221eae9c33413ff9eb574f6',1,'memory_game.cpp']]],
+ ['sleep_5ffor_152',['sleep_for',['http://en.cppreference.com/w/cpp/thread/sleep_for.html',0,'std::this_thread']]],
+ ['sleep_5funtil_153',['sleep_until',['http://en.cppreference.com/w/cpp/thread/sleep_until.html',0,'std::this_thread']]],
+ ['slice_154',['slice',['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#a1fcb7db9bdeabd874712ec4f00483d17',1,'divide_and_conquer::strassens_multiplication::Matrix']]],
+ ['smallest_5fcircle_2ecpp_155',['smallest_circle.cpp',['../d0/d01/smallest__circle_8cpp.html',1,'']]],
+ ['smatch_156',['smatch',['http://en.cppreference.com/w/cpp/regex/match_results.html',0,'std::smatch'],['http://en.cppreference.com/w/cpp/regex/match_results/match_results.html',0,'std::smatch::smatch()']]],
+ ['snextc_157',['snextc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_filebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wstringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::stringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wfilebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::wstreambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::strstreambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_stringbuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::basic_streambuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::filebuf::snextc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/snextc.html',0,'std::streambuf::snextc()']]],
+ ['snprintf_158',['snprintf',['http://en.cppreference.com/w/cpp/io/c/fprintf.html',0,'std']]],
+ ['solution_159',['Solution',['../dd/d4f/class_solution.html',1,'Solution'],['../da/d02/classmachine__learning_1_1aystar__search_1_1_ay_star_search.html#a0a26aa9ad3d73707370d9fe83707aca4',1,'machine_learning::aystar_search::AyStarSearch::Solution()']]],
+ ['solve_160',['solve',['../d1/d2a/knight__tour_8cpp.html#aaa47356d98676cf5315d978f741e29c9',1,'backtracking::knight_tour']]],
+ ['solvemaze_161',['solveMaze',['../dc/d5a/rat__maze_8cpp.html#ab99107bfb4c6934cd4691868c66c0aa3',1,'backtracking::rat_maze']]],
+ ['solvenq_162',['solveNQ',['../d4/d3e/n__queens_8cpp.html#a0dbd7af47d87f0b956609fe9e3288ecb',1,'backtracking::n_queens']]],
+ ['solvesudoku_163',['solveSudoku',['../d3/d05/sudoku__solver_8cpp.html#ac911c8bca8556206ff64461b2424866b',1,'backtracking::sudoku_solver']]],
+ ['sort_164',['sort',['http://en.cppreference.com/w/cpp/container/forward_list/sort.html',0,'std::forward_list::sort()'],['http://en.cppreference.com/w/cpp/container/list/sort.html',0,'std::list::sort()'],['../d5/dab/structdata__structures_1_1list__array_1_1list.html#a133635ad53bd89e3947ca02448819180',1,'data_structures::list_array::list::sort()'],['http://en.cppreference.com/w/cpp/algorithm/sort.html',0,'std::sort()']]],
+ ['sort_20algorithm_20analysis_20best_20case_20worst_20case_20average_20case_165',['Bubble Sort Algorithm Analysis (Best Case - Worst Case - Average Case)',['../d8/d13/bubble__sort_8cpp.html#autotoc_md111',1,'']]],
+ ['sort_5fheap_166',['sort_heap',['http://en.cppreference.com/w/cpp/algorithm/sort_heap.html',0,'std']]],
+ ['sortcol_167',['sortcol',['../df/d47/fcfs__scheduling_8cpp.html#a18920aa331faf4476b251c8cdb2c2bec',1,'fcfs_scheduling.cpp']]],
+ ['sorting_168',['Sorting',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md67',1,'']]],
+ ['sorting_169',['sorting',['../d5/d91/namespacesorting.html',1,'']]],
+ ['sorting_20algorithm_170',['Sorting Algorithm',['../d5/d4c/group__sorting.html',1,'']]],
+ ['sparse_5fmatrix_2ecpp_171',['sparse_matrix.cpp',['../d3/d19/sparse__matrix_8cpp.html',1,'']]],
+ ['sparse_5ftable_172',['Sparse_table',['../da/d37/structdata__structures_1_1sparse__table_1_1_sparse__table.html',1,'data_structures::sparse_table']]],
+ ['sparse_5ftable_173',['sparse_table',['../d9/d55/namespacesparse__table.html',1,'']]],
+ ['sparse_5ftable_2ecpp_174',['sparse_table.cpp',['../d6/d42/data__structures_2sparse__table_8cpp.html',1,'(Global Namespace)'],['../d4/d96/range__queries_2sparse__table_8cpp.html',1,'(Global Namespace)']]],
+ ['sphere_5fsurface_5farea_175',['sphere_surface_area',['../dd/d47/namespacemath.html#ab7f29862d30df351c317eedd60a0c656',1,'math']]],
+ ['sphere_5fvolume_176',['sphere_volume',['../dd/d47/namespacemath.html#a34d66a77c19ce9b8b3a3d14352b34551',1,'math']]],
+ ['spiral_5fprint_2ecpp_177',['spiral_print.cpp',['../db/d07/spiral__print_8cpp.html',1,'']]],
+ ['spiralprint_178',['spiralPrint',['../db/d07/spiral__print_8cpp.html#a850d3f55e1a8d227176cdcc67352c197',1,'spiral_print.cpp']]],
+ ['spirograph_179',['spirograph',['../da/dd3/namespacespirograph.html',1,'spirograph'],['../da/dd3/namespacespirograph.html#aeca22dbe4563358960e907a40cd3e1ac',1,'spirograph::spirograph()']]],
+ ['spirograph_2ecpp_180',['spirograph.cpp',['../da/d77/spirograph_8cpp.html',1,'']]],
+ ['splice_181',['splice',['http://en.cppreference.com/w/cpp/container/list/splice.html',0,'std::list']]],
+ ['splice_5fafter_182',['splice_after',['http://en.cppreference.com/w/cpp/container/forward_list/splice_after.html',0,'std::forward_list']]],
+ ['splitnode_183',['SplitNode',['../d3/d95/classdata__structures_1_1tree__234_1_1_tree234.html#a370b625ca9f16bbef2b65e024ef78ea9',1,'data_structures::tree_234::Tree234']]],
+ ['sprintf_184',['sprintf',['http://en.cppreference.com/w/cpp/io/c/fprintf.html',0,'std']]],
+ ['sputbackc_185',['sputbackc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_filebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wstringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::stringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wfilebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::wstreambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::strstreambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_stringbuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::basic_streambuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::filebuf::sputbackc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputbackc.html',0,'std::streambuf::sputbackc()']]],
+ ['sputc_186',['sputc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_filebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wstringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::stringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wfilebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::wstreambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::strstreambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_stringbuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::basic_streambuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::filebuf::sputc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputc.html',0,'std::streambuf::sputc()']]],
+ ['sputn_187',['sputn',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_filebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wstringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::stringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wfilebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::wstreambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::strstreambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_stringbuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::basic_streambuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::filebuf::sputn()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sputn.html',0,'std::streambuf::sputn()']]],
+ ['sqrt_188',['Sqrt',['../da/d24/sqrt__double_8cpp.html#ae662282ad0740d2063ac404ca3bd74fc',1,'sqrt_double.cpp']]],
+ ['sqrt_189',['sqrt',['http://en.cppreference.com/w/cpp/numeric/math/sqrt.html',0,'std']]],
+ ['sqrt_5fdouble_2ecpp_190',['sqrt_double.cpp',['../da/d24/sqrt__double_8cpp.html',1,'']]],
+ ['square_191',['square',['../d2/d58/neural__network_8cpp.html#a45d3e30406712ada3d9713ece3c1b153',1,'machine_learning::neural_network::util_functions']]],
+ ['square_5farea_192',['square_area',['../dd/d47/namespacemath.html#a971ce57e368f2f631cf1f4ff3f864049',1,'math']]],
+ ['square_5fperimeter_193',['square_perimeter',['../dd/d47/namespacemath.html#a9236348755183644f1225e162d01ab14',1,'math']]],
+ ['srand_194',['srand',['http://en.cppreference.com/w/cpp/numeric/random/srand.html',0,'std']]],
+ ['sregex_5fiterator_195',['sregex_iterator',['http://en.cppreference.com/w/cpp/regex/regex_iterator.html',0,'std::sregex_iterator'],['http://en.cppreference.com/w/cpp/regex/regex_iterator/regex_iterator.html',0,'std::sregex_iterator::sregex_iterator()']]],
+ ['sregex_5ftoken_5fiterator_196',['sregex_token_iterator',['http://en.cppreference.com/w/cpp/regex/regex_token_iterator.html',0,'std::sregex_token_iterator'],['http://en.cppreference.com/w/cpp/regex/regex_token_iterator/regex_token_iterator.html',0,'std::sregex_token_iterator::sregex_token_iterator()']]],
+ ['sret_5finit_197',['sret_init',['../d9/d35/classrange__queries_1_1heavy__light__decomposition_1_1_s_g.html#aa7f93971a9f891e0bbb7023081f379d5',1,'range_queries::heavy_light_decomposition::SG']]],
+ ['sscanf_198',['sscanf',['http://en.cppreference.com/w/cpp/io/c/fscanf.html',0,'std']]],
+ ['ssub_5fmatch_199',['ssub_match',['http://en.cppreference.com/w/cpp/regex/sub_match.html',0,'std::ssub_match'],['http://en.cppreference.com/w/cpp/regex/sub_match/sub_match.html',0,'std::ssub_match::ssub_match()']]],
+ ['st_200',['ST',['../da/d37/structdata__structures_1_1sparse__table_1_1_sparse__table.html#ad36b9a20fed47b068e407008c04e9f81',1,'data_structures::sparse_table::Sparse_table']]],
+ ['stable_5fpartition_201',['stable_partition',['http://en.cppreference.com/w/cpp/algorithm/stable_partition.html',0,'std']]],
+ ['stable_5fsort_202',['stable_sort',['http://en.cppreference.com/w/cpp/algorithm/stable_sort.html',0,'std']]],
+ ['stack_203',['Stack',['../d2/dc8/classdata__structures_1_1_stack.html',1,'data_structures::Stack< T >'],['../db/d5b/structdata__structures_1_1stack__using__queue_1_1_stack.html',1,'data_structures::stack_using_queue::Stack'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html',1,'others::postfix_expression::Stack'],['../d2/dc8/classdata__structures_1_1_stack.html#a8cb0602c8a9c1603d0315938177ecc6a',1,'data_structures::Stack::Stack()']]],
+ ['stack_204',['stack',['../d1/dc2/classstack.html',1,'stack< ValueType >'],['http://en.cppreference.com/w/cpp/container/stack.html',0,'std::stack< T >'],['../d2/dc8/classdata__structures_1_1_stack.html#a3f912a0e9bed5b24b206584e3010dce3',1,'data_structures::Stack::stack'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html#af06360122e20ce2ba32c574a27a20ba1',1,'others::postfix_expression::Stack::stack'],['http://en.cppreference.com/w/cpp/container/stack/stack.html',0,'std::stack::stack()'],['../dc/dc5/paranthesis__matching_8cpp.html#aa37d24a036d239b3b528f13b9de880c7',1,'stack: paranthesis_matching.cpp']]],
+ ['stack_2ehpp_205',['stack.hpp',['../df/d47/stack_8hpp.html',1,'']]],
+ ['stack_5fidx_206',['stack_idx',['../dc/dc5/paranthesis__matching_8cpp.html#af4c937d823c412d99fbe60c99dbf0a4f',1,'paranthesis_matching.cpp']]],
+ ['stack_5flinkedlist_207',['stack_linkedList',['../d2/dc4/classstack__linked_list.html',1,'']]],
+ ['stack_5fusing_5fqueue_208',['stack_using_queue',['../df/d1c/namespacestack__using__queue.html',1,'']]],
+ ['stackindex_209',['stackIndex',['../d2/dc8/classdata__structures_1_1_stack.html#a71afc94746d47fb2c0c4fa4b612edee6',1,'data_structures::Stack']]],
+ ['stacksize_210',['stackSize',['../d2/dc8/classdata__structures_1_1_stack.html#a88a10062c0662a385f172669f2f19b86',1,'data_structures::Stack']]],
+ ['stacktop_211',['stackTop',['../d1/dc2/classstack.html#aefb3dac828e32b4ec014ff4b5d43a6b8',1,'stack::stackTop'],['../d5/d8a/classothers_1_1postfix__expression_1_1_stack.html#a6ae98710503b894b843d01cb69d5490c',1,'others::postfix_expression::Stack::stackTop']]],
+ ['stairs_5fpattern_2ecpp_212',['stairs_pattern.cpp',['../d5/def/stairs__pattern_8cpp.html',1,'']]],
+ ['standard_5fdeviation_213',['standard_deviation',['../da/d19/classprobability_1_1geometric__dist_1_1geometric__distribution.html#a0a10c512e13dd3a052e1c6d7f4d6f0f2',1,'probability::geometric_dist::geometric_distribution']]],
+ ['standard_5finvsqrt_214',['Standard_InvSqrt',['../d6/db8/inv__sqrt_8cpp.html#aa2703e5cf3fecde8becd9066b9666b97',1,'inv_sqrt.cpp']]],
+ ['standards_215',['Our Standards',['../d3/dd7/md__c_o_d_e___o_f___c_o_n_d_u_c_t.html#autotoc_md6',1,'']]],
+ ['startwith_216',['startwith',['../d3/d26/classdata__structures_1_1trie__using__hashmap_1_1_trie.html#af3aee573fbabd2c1510c0f74f842dd17',1,'data_structures::trie_using_hashmap::Trie']]],
+ ['state_217',['state',['http://en.cppreference.com/w/cpp/locale/wbuffer_convert/state.html',0,'std::wbuffer_convert::state()'],['http://en.cppreference.com/w/cpp/locale/wstring_convert/state.html',0,'std::wstring_convert::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::wstreampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::u16streampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::streampos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::fpos::state()'],['http://en.cppreference.com/w/cpp/io/fpos/state.html',0,'std::u32streampos::state()']]],
+ ['state_5ftype_218',['state_type',['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_byname::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf16::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf8::state_type'],['http://en.cppreference.com/w/cpp/locale/codecvt.html',0,'std::codecvt_utf8_utf16::state_type']]],
+ ['static_20code_20analyzer_219',['Static Code Analyzer',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md38',1,'']]],
+ ['static_5fpointer_5fcast_220',['static_pointer_cast',['http://en.cppreference.com/w/cpp/memory/shared_ptr/pointer_cast.html',0,'std']]],
+ ['statistics_221',['statistics',['../d2/dcf/namespacestatistics.html',1,'']]],
+ ['stats_5fcomputer1_222',['stats_computer1',['../d7/d7c/classstatistics_1_1stats__computer1.html',1,'statistics']]],
+ ['stats_5fcomputer2_223',['stats_computer2',['../d8/dab/classstatistics_1_1stats__computer2.html',1,'statistics']]],
+ ['std_224',['std',['../d8/dcc/namespacestd.html',1,'std'],['../d7/d7c/classstatistics_1_1stats__computer1.html#af57e942d49f4fd70f059f224b4ac07e1',1,'statistics::stats_computer1::std()'],['../d8/dab/classstatistics_1_1stats__computer2.html#acf2e84df4fc386bb3295016ef8fd156e',1,'statistics::stats_computer2::std()']]],
+ ['std_3a_3achrono_225',['chrono',['http://en.cppreference.com/w/d4/d0c/namespacestd_1_1chrono.html',0,'std']]],
+ ['std_3a_3aexperimental_226',['experimental',['http://en.cppreference.com/w/de/d97/namespacestd_1_1experimental.html',0,'std']]],
+ ['std_3a_3aregex_5fconstants_227',['regex_constants',['http://en.cppreference.com/w/db/da4/namespacestd_1_1regex__constants.html',0,'std']]],
+ ['std_3a_3arel_5fops_228',['rel_ops',['http://en.cppreference.com/w/da/d42/namespacestd_1_1rel__ops.html',0,'std']]],
+ ['std_3a_3athis_5fthread_229',['this_thread',['http://en.cppreference.com/w/d7/dbf/namespacestd_1_1this__thread.html',0,'std']]],
+ ['stddev_230',['stddev',['http://en.cppreference.com/w/cpp/numeric/random/normal_distribution/params.html',0,'std::normal_distribution']]],
+ ['steady_5fclock_231',['steady_clock',['http://en.cppreference.com/w/cpp/chrono/steady_clock.html',0,'std::chrono']]],
+ ['step_5fith_232',['step_ith',['../d8/d61/radix__sort2_8cpp.html#a98ead7d43b11505398daf9a894f122f9',1,'sorting::radix_sort']]],
+ ['stod_233',['stod',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
+ ['stof_234',['stof',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
+ ['stoi_235',['stoi',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
+ ['stol_236',['stol',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
+ ['stold_237',['stold',['http://en.cppreference.com/w/cpp/string/basic_string/stof.html',0,'std']]],
+ ['stoll_238',['stoll',['http://en.cppreference.com/w/cpp/string/basic_string/stol.html',0,'std']]],
+ ['stooge_5fsort_2ecpp_239',['stooge_sort.cpp',['../d4/d4f/stooge__sort_8cpp.html',1,'']]],
+ ['stoogesort_240',['stoogeSort',['../d4/d4f/stooge__sort_8cpp.html#ac23852832437dc68327efe9b1da2d91b',1,'stooge_sort.cpp']]],
+ ['store_241',['store',['http://en.cppreference.com/w/cpp/atomic/atomic/store.html',0,'std::atomic']]],
+ ['store_20the_20address_20of_20parent_20nodes_242',['Method 1: Use parent pointer (store the address of parent nodes)',['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md91',1,'']]],
+ ['stoul_243',['stoul',['http://en.cppreference.com/w/cpp/string/basic_string/stoul.html',0,'std']]],
+ ['stoull_244',['stoull',['http://en.cppreference.com/w/cpp/string/basic_string/stoul.html',0,'std']]],
+ ['str_245',['str',['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::match_results::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::basic_ostringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::wstringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::wsmatch::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::wcsub_match::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::ostringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::stringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::smatch::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::stringstream::str()'],['http://en.cppreference.com/w/cpp/io/strstreambuf/str.html',0,'std::strstreambuf::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::wcmatch::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::wssub_match::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::csub_match::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/str.html',0,'std::basic_stringbuf::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::ssub_match::str()'],['http://en.cppreference.com/w/cpp/io/strstream/str.html',0,'std::strstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::basic_stringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_ostringstream/str.html',0,'std::wostringstream::str()'],['http://en.cppreference.com/w/cpp/io/istrstream/str.html',0,'std::istrstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::basic_istringstream::str()'],['http://en.cppreference.com/w/cpp/regex/match_results/str.html',0,'std::cmatch::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::istringstream::str()'],['http://en.cppreference.com/w/cpp/io/ostrstream/str.html',0,'std::ostrstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/str.html',0,'std::wstringstream::str()'],['http://en.cppreference.com/w/cpp/io/basic_istringstream/str.html',0,'std::wistringstream::str()'],['http://en.cppreference.com/w/cpp/regex/sub_match/str.html',0,'std::sub_match::str()']]],
+ ['strand_246',['strand',['../d8/d1d/namespacestrand.html',1,'']]],
+ ['strand_5fsort_247',['strand_sort',['../dc/dd9/strand__sort_8cpp.html#a2bea2fe5dd38ed63610fdeaddf5785cd',1,'sorting::strand']]],
+ ['strand_5fsort_2ecpp_248',['strand_sort.cpp',['../dc/dd9/strand__sort_8cpp.html',1,'']]],
+ ['strassens_5fmultiplication_249',['strassens_multiplication',['../d3/d91/namespacestrassens__multiplication.html',1,'strassens_multiplication'],['../dc/d13/classdivide__and__conquer_1_1strassens__multiplication_1_1_matrix.html#a87c2ed8f19bda2ad21ee4cbed32c394a',1,'divide_and_conquer::strassens_multiplication::Matrix::strassens_multiplication()']]],
+ ['strcat_250',['strcat',['http://en.cppreference.com/w/cpp/string/byte/strcat.html',0,'std']]],
+ ['strchr_251',['strchr',['http://en.cppreference.com/w/cpp/string/byte/strchr.html',0,'std']]],
+ ['strcmp_252',['strcmp',['http://en.cppreference.com/w/cpp/string/byte/strcmp.html',0,'std']]],
+ ['strcoll_253',['strcoll',['http://en.cppreference.com/w/cpp/string/byte/strcoll.html',0,'std']]],
+ ['strcpy_254',['strcpy',['http://en.cppreference.com/w/cpp/string/byte/strcpy.html',0,'std']]],
+ ['strcspn_255',['strcspn',['http://en.cppreference.com/w/cpp/string/byte/strcspn.html',0,'std']]],
+ ['streambuf_256',['streambuf',['http://en.cppreference.com/w/cpp/io/basic_streambuf.html',0,'std::streambuf'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/basic_streambuf.html',0,'std::streambuf::streambuf()']]],
+ ['streamoff_257',['streamoff',['http://en.cppreference.com/w/cpp/io/streamoff.html',0,'std']]],
+ ['streampos_258',['streampos',['http://en.cppreference.com/w/cpp/io/fpos.html',0,'std']]],
+ ['streamsize_259',['streamsize',['http://en.cppreference.com/w/cpp/io/streamsize.html',0,'std']]],
+ ['strerror_260',['strerror',['http://en.cppreference.com/w/cpp/string/byte/strerror.html',0,'std']]],
+ ['strftime_261',['strftime',['http://en.cppreference.com/w/cpp/chrono/c/strftime.html',0,'std']]],
+ ['string_262',['string',['http://en.cppreference.com/w/cpp/string/basic_string.html',0,'std::string'],['../d6/dd6/namespacestring.html',1,'string'],['http://en.cppreference.com/w/cpp/string/basic_string/basic_string.html',0,'std::string::string()']]],
+ ['string_5ffibonacci_2ecpp_263',['string_fibonacci.cpp',['../de/d47/string__fibonacci_8cpp.html',1,'']]],
+ ['string_5fsearch_264',['string_search',['../d9/d03/namespacestring__search.html',1,'']]],
+ ['string_5ftype_265',['string_type',['http://en.cppreference.com/w/cpp/locale/collate.html',0,'std::collate::string_type'],['http://en.cppreference.com/w/cpp/locale/collate.html',0,'std::collate_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/messages.html',0,'std::messages::string_type'],['http://en.cppreference.com/w/cpp/locale/messages.html',0,'std::messages_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/money_get.html',0,'std::money_get::string_type'],['http://en.cppreference.com/w/cpp/locale/money_put.html',0,'std::money_put::string_type'],['http://en.cppreference.com/w/cpp/locale/moneypunct.html',0,'std::moneypunct::string_type'],['http://en.cppreference.com/w/cpp/locale/moneypunct.html',0,'std::moneypunct_byname::string_type'],['http://en.cppreference.com/w/cpp/locale/numpunct.html',0,'std::numpunct::string_type'],['http://en.cppreference.com/w/cpp/locale/numpunct.html',0,'std::numpunct_byname::string_type']]],
+ ['stringbuf_266',['stringbuf',['http://en.cppreference.com/w/cpp/io/basic_stringbuf.html',0,'std::stringbuf'],['http://en.cppreference.com/w/cpp/io/basic_stringbuf/basic_stringbuf.html',0,'std::stringbuf::stringbuf()']]],
+ ['strings_267',['Strings',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md68',1,'']]],
+ ['strings_268',['strings',['../df/dcb/namespacestrings.html',1,'']]],
+ ['strings_3a_3aboyer_5fmoore_269',['boyer_moore',['../d0/dbc/namespacestrings_1_1boyer__moore.html',1,'strings']]],
+ ['stringstream_270',['stringstream',['http://en.cppreference.com/w/cpp/io/basic_stringstream.html',0,'std::stringstream'],['http://en.cppreference.com/w/cpp/io/basic_stringstream/basic_stringstream.html',0,'std::stringstream::stringstream()']]],
+ ['strkey_271',['STRKEY',['../d6/d4e/namespaceciphers.html#ab9aec0ccf4b6809f652bb540be87c216',1,'ciphers']]],
+ ['strlen_272',['strlen',['http://en.cppreference.com/w/cpp/string/byte/strlen.html',0,'std']]],
+ ['strncat_273',['strncat',['http://en.cppreference.com/w/cpp/string/byte/strncat.html',0,'std']]],
+ ['strncmp_274',['strncmp',['http://en.cppreference.com/w/cpp/string/byte/strncmp.html',0,'std']]],
+ ['strncpy_275',['strncpy',['http://en.cppreference.com/w/cpp/string/byte/strncpy.html',0,'std']]],
+ ['strpbrk_276',['strpbrk',['http://en.cppreference.com/w/cpp/string/byte/strpbrk.html',0,'std']]],
+ ['strrchr_277',['strrchr',['http://en.cppreference.com/w/cpp/string/byte/strrchr.html',0,'std']]],
+ ['strspn_278',['strspn',['http://en.cppreference.com/w/cpp/string/byte/strspn.html',0,'std']]],
+ ['strstr_279',['strstr',['http://en.cppreference.com/w/cpp/string/byte/strstr.html',0,'std']]],
+ ['strstream_280',['strstream',['http://en.cppreference.com/w/cpp/io/strstream.html',0,'std::strstream'],['http://en.cppreference.com/w/cpp/io/strstream/strstream.html',0,'std::strstream::strstream()']]],
+ ['strstreambuf_281',['strstreambuf',['http://en.cppreference.com/w/cpp/io/strstreambuf.html',0,'std::strstreambuf'],['http://en.cppreference.com/w/cpp/io/strstreambuf/strstreambuf.html',0,'std::strstreambuf::strstreambuf()']]],
+ ['strtod_282',['strtod',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
+ ['strtof_283',['strtof',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
+ ['strtoimax_284',['strtoimax',['http://en.cppreference.com/w/cpp/string/byte/strtoimax.html',0,'std']]],
+ ['strtok_285',['strtok',['http://en.cppreference.com/w/cpp/string/byte/strtok.html',0,'std']]],
+ ['strtol_286',['strtol',['http://en.cppreference.com/w/cpp/string/byte/strtol.html',0,'std']]],
+ ['strtold_287',['strtold',['http://en.cppreference.com/w/cpp/string/byte/strtof.html',0,'std']]],
+ ['strtoll_288',['strtoll',['http://en.cppreference.com/w/cpp/string/byte/strtol.html',0,'std']]],
+ ['strtoul_289',['strtoul',['http://en.cppreference.com/w/cpp/string/byte/strtoul.html',0,'std']]],
+ ['strtoull_290',['strtoull',['http://en.cppreference.com/w/cpp/string/byte/strtoul.html',0,'std']]],
+ ['strtoumax_291',['strtoumax',['http://en.cppreference.com/w/cpp/string/byte/strtoimax.html',0,'std']]],
+ ['structure_20of_20a_20program_292',['Typical structure of a program',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md31',1,'']]],
+ ['structure_20used_293',['Data Structure used',['../d3/db3/lru__cache_8cpp.html#autotoc_md98',1,'']]],
+ ['structures_294',['Data Structures',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md49',1,'']]],
+ ['struzik_5fsearch_295',['struzik_search',['../d8/d8a/exponential__search_8cpp.html#af421bf4b7b95f20ac86c233adfdb9208',1,'exponential_search.cpp']]],
+ ['strxfrm_296',['strxfrm',['http://en.cppreference.com/w/cpp/string/byte/strxfrm.html',0,'std']]],
+ ['student_5ft_5fdistribution_297',['student_t_distribution',['http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution.html',0,'std::student_t_distribution'],['http://en.cppreference.com/w/cpp/numeric/random/student_t_distribution/student_t_distribution.html',0,'std::student_t_distribution::student_t_distribution()']]],
+ ['style_20convention_298',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]],
+ ['style_20conventions_299',['Code style conventions',['../dc/d64/md__coding_guidelines.html#autotoc_md20',1,'']]],
+ ['sub_5fmatch_300',['sub_match',['http://en.cppreference.com/w/cpp/regex/sub_match.html',0,'std::sub_match'],['http://en.cppreference.com/w/cpp/regex/sub_match/sub_match.html',0,'std::sub_match::sub_match()']]],
+ ['subarray_5fsum_301',['subarray_sum',['../df/d74/namespacesubarray__sum.html',1,'subarray_sum'],['../df/d94/subarray__sum_8cpp.html#af5687bbd9faf927fbd363c71e0baba5e',1,'backtracking::subarray_sum::subarray_sum()']]],
+ ['subarray_5fsum_2ecpp_302',['subarray_sum.cpp',['../df/d94/subarray__sum_8cpp.html',1,'']]],
+ ['sublist_5fsearch_303',['sublist_search',['../d9/def/namespacesublist__search.html',1,'']]],
+ ['sublist_5fsearch_2ecpp_304',['sublist_search.cpp',['../d5/d45/sublist__search_8cpp.html',1,'']]],
+ ['sublistsearch_305',['sublistSearch',['../d5/d45/sublist__search_8cpp.html#a4faee403e2758aaab682ed6622ae218c',1,'search::sublist_search']]],
+ ['subset_5fsum_306',['subset_sum',['../dc/d3a/namespacesubset__sum.html',1,'']]],
+ ['subset_5fsum_2ecpp_307',['subset_sum.cpp',['../d0/dfe/backtracking_2subset__sum_8cpp.html',1,'(Global Namespace)'],['../d6/d80/dynamic__programming_2subset__sum_8cpp.html',1,'(Global Namespace)']]],
+ ['subset_5fsum_5fproblem_308',['subset_sum_problem',['../d6/d80/dynamic__programming_2subset__sum_8cpp.html#ac94e6c0dee11278ac0a5491f1b9a4a50',1,'dynamic_programming::subset_sum']]],
+ ['subset_5fsum_5frecursion_309',['subset_sum_recursion',['../d6/d80/dynamic__programming_2subset__sum_8cpp.html#a280fcfb2f6fe49a31c4da572e7032607',1,'dynamic_programming::subset_sum']]],
+ ['subsets_310',['Subsets',['../de/d95/namespace_subsets.html',1,'']]],
+ ['substr_311',['substr',['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::basic_string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::wstring::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::u16string::substr()'],['http://en.cppreference.com/w/cpp/string/basic_string/substr.html',0,'std::u32string::substr()']]],
+ ['subtract_5fwith_5fcarry_5fengine_312',['subtract_with_carry_engine',['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine.html',0,'std::subtract_with_carry_engine'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/subtract_with_carry_engine.html',0,'std::subtract_with_carry_engine::subtract_with_carry_engine()']]],
+ ['subtree_313',['subtree',['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md89',1,'Case 1: The given node has the right node/subtree'],['../d4/d32/inorder__successor__of__bst_8cpp.html#autotoc_md90',1,'Case 2: The given node does not have a right node/subtree']]],
+ ['succ_314',['succ',['../de/d9d/classdata__structures_1_1linked__list_1_1link.html#af6bbeb9bfde1683ba917071edeedd5c3',1,'data_structures::linked_list::link']]],
+ ['successive_5fapproximation_2ecpp_315',['successive_approximation.cpp',['../df/dc8/successive__approximation_8cpp.html',1,'']]],
+ ['sudoku_5fsolver_316',['sudoku_solver',['../d8/d9f/namespacesudoku__solver.html',1,'']]],
+ ['sudoku_5fsolver_2ecpp_317',['sudoku_solver.cpp',['../d3/d05/sudoku__solver_8cpp.html',1,'']]],
+ ['suffix_318',['suffix',['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::match_results::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::wsmatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::smatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::wcmatch::suffix()'],['http://en.cppreference.com/w/cpp/regex/match_results/suffix.html',0,'std::cmatch::suffix()']]],
+ ['suggestautocomplete_319',['SuggestAutocomplete',['../d0/d5f/classoperations__on__datastructures_1_1trie__operations_1_1_tnode.html#a097913c4badec2b60d50a171ecc299fe',1,'operations_on_datastructures::trie_operations::Tnode']]],
+ ['suggestfreqautocomplete_320',['SuggestFreqAutocomplete',['../d0/d5f/classoperations__on__datastructures_1_1trie__operations_1_1_tnode.html#a9e556f52c837190ecf4265b1f05cfe9c',1,'operations_on_datastructures::trie_operations::Tnode']]],
+ ['sum_321',['sum',['../de/d0d/classrange__queries_1_1fenwick__tree.html#a1fa0559d987fde0044761b17b35f5abd',1,'range_queries::fenwick_tree::sum()'],['../d8/d77/namespacemachine__learning.html#a6f1c98c016ad34ff3d9f39372161bd35',1,'machine_learning::sum()']]],
+ ['sum_5fof_5fbinomial_5fcoefficient_2ecpp_322',['sum_of_binomial_coefficient.cpp',['../d4/d9d/sum__of__binomial__coefficient_8cpp.html',1,'']]],
+ ['sum_5fof_5fdigits_323',['sum_of_digits',['../d4/d83/sum__of__digits_8cpp.html#a4619c78b6ad985713024f930f31c4395',1,'sum_of_digits.cpp']]],
+ ['sum_5fof_5fdigits_2ecpp_324',['sum_of_digits.cpp',['../d4/d83/sum__of__digits_8cpp.html',1,'']]],
+ ['sum_5fof_5fdivisor_325',['sum_of_divisor',['../dd/d47/namespacemath.html#af05567415a9ea36c254b54e3d5a2152a',1,'math']]],
+ ['sum_5frange_326',['sum_range',['../de/d0d/classrange__queries_1_1fenwick__tree.html#a0914a4b1401a7c427de91c92885724fe',1,'range_queries::fenwick_tree']]],
+ ['summary_327',['summary',['../d4/df4/classmachine__learning_1_1neural__network_1_1_neural_network.html#a61d30113d13304c664057118b92a5931',1,'machine_learning::neural_network::NeuralNetwork']]],
+ ['sungetc_328',['sungetc',['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_filebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wstringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::stringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wfilebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::wstreambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::strstreambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_stringbuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::basic_streambuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::filebuf::sungetc()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/sungetc.html',0,'std::streambuf::sungetc()']]],
+ ['swap_329',['swap',['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::fstream::swap()'],['http://en.cppreference.com/w/cpp/container/vector/swap.html',0,'std::vector::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::match_results::swap()'],['http://en.cppreference.com/w/cpp/container/multiset/swap.html',0,'std::multiset::swap()'],['http://en.cppreference.com/w/cpp/memory/weak_ptr/swap.html',0,'std::weak_ptr::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wostream::swap()'],['http://en.cppreference.com/w/cpp/container/set/swap.html',0,'std::set::swap()'],['http://en.cppreference.com/w/cpp/thread/unique_lock/swap.html',0,'std::unique_lock::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ostringstream::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::regex::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_map/swap.html',0,'std::unordered_map::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::basic_regex::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_filebuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wstringbuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ios::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::wsmatch::swap()'],['http://en.cppreference.com/w/cpp/utility/tuple/swap.html',0,'std::tuple::swap()'],['http://en.cppreference.com/w/cpp/memory/shared_ptr/swap.html',0,'std::shared_ptr::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_fstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::stringbuf::swap()'],['http://en.cppreference.com/w/cpp/regex/basic_regex/swap.html',0,'std::wregex::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::smatch::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wfilebuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::iostream::swap()'],['http://en.cppreference.com/w/cpp/container/stack/swap.html',0,'std::stack::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wistream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::wstreambuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::stringstream::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_multimap/swap.html',0,'std::unordered_multimap::swap()'],['http://en.cppreference.com/w/cpp/memory/unique_ptr/swap.html',0,'std::unique_ptr::swap()'],['http://en.cppreference.com/w/cpp/container/forward_list/swap.html',0,'std::forward_list::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::strstreambuf::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostream::swap()'],['http://en.cppreference.com/w/cpp/thread/shared_lock/swap.html',0,'std::shared_lock::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::wcmatch::swap()'],['http://en.cppreference.com/w/cpp/utility/pair/swap.html',0,'std::pair::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wifstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_istream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_stringbuf::swap()'],['http://en.cppreference.com/w/cpp/container/deque/swap.html',0,'std::deque::swap()'],['http://en.cppreference.com/w/cpp/thread/promise/swap.html',0,'std::promise::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::strstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::basic_streambuf::swap()'],['http://en.cppreference.com/w/cpp/container/queue/swap.html',0,'std::queue::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_stringstream::swap()'],['http://en.cppreference.com/w/cpp/thread/thread/swap.html',0,'std::thread::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::basic_string::swap()'],['http://en.cppreference.com/w/cpp/container/priority_queue/swap.html',0,'std::priority_queue::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wostringstream::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::wstring::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istrstream::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_multiset/swap.html',0,'std::unordered_multiset::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ostream::swap()'],['http://en.cppreference.com/w/cpp/utility/functional/function/swap.html',0,'std::function::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::filebuf::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::u16string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wiostream::swap()'],['http://en.cppreference.com/w/cpp/string/basic_string/swap.html',0,'std::u32string::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_istringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_ifstream::swap()'],['http://en.cppreference.com/w/cpp/container/list/swap.html',0,'std::list::swap()'],['http://en.cppreference.com/w/cpp/container/map/swap.html',0,'std::map::swap()'],['http://en.cppreference.com/w/cpp/regex/match_results/swap.html',0,'std::cmatch::swap()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/swap.html',0,'std::streambuf::swap()'],['http://en.cppreference.com/w/cpp/experimental/optional/swap.html',0,'std::experimental::optional::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::istream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ostrstream::swap()'],['http://en.cppreference.com/w/cpp/thread/packaged_task/swap.html',0,'std::packaged_task::swap()'],['http://en.cppreference.com/w/cpp/container/unordered_set/swap.html',0,'std::unordered_set::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wfstream::swap()'],['http://en.cppreference.com/w/cpp/container/multimap/swap.html',0,'std::multimap::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::basic_iostream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wofstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wstringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::wistringstream::swap()'],['http://en.cppreference.com/w/cpp/io/basic_ios/swap.html',0,'std::ifstream::swap()'],['http://en.cppreference.com/w/cpp/container/array/swap.html',0,'std::array::swap()'],['http://en.cppreference.com/w/cpp/algorithm/swap.html',0,'std::swap(T... args)']]],
+ ['swap_5franges_330',['swap_ranges',['http://en.cppreference.com/w/cpp/algorithm/swap_ranges.html',0,'std']]],
+ ['swprintf_331',['swprintf',['http://en.cppreference.com/w/cpp/io/c/fwprintf.html',0,'std']]],
+ ['swscanf_332',['swscanf',['http://en.cppreference.com/w/cpp/io/c/fwscanf.html',0,'std']]],
+ ['sync_333',['sync',['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::fstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_filebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wstringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_fstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::stringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wfilebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::iostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wistream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::wstreambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::stringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::strstreambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wifstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_istream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_stringbuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::strstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::basic_streambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_stringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istrstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::filebuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wiostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_istringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_ifstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_streambuf/pubsync.html',0,'std::streambuf::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::istream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wfstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::basic_iostream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wstringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::wistringstream::sync()'],['http://en.cppreference.com/w/cpp/io/basic_istream/sync.html',0,'std::ifstream::sync()']]],
+ ['sync_5fwith_5fstdio_334',['sync_with_stdio',['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::fstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ios::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_fstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::iostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ios_base::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wistream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::stringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wifstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_istream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::strstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_stringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wostringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istrstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wiostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_istringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_ifstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::istream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ostrstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wfstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::basic_iostream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wofstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wstringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::wistringstream::sync_with_stdio()'],['http://en.cppreference.com/w/cpp/io/ios_base/sync_with_stdio.html',0,'std::ifstream::sync_with_stdio()']]],
+ ['system_335',['system',['http://en.cppreference.com/w/cpp/utility/program/system.html',0,'std']]],
+ ['system_5fcategory_336',['system_category',['http://en.cppreference.com/w/cpp/error/system_category.html',0,'std']]],
+ ['system_5fclock_337',['system_clock',['http://en.cppreference.com/w/cpp/chrono/system_clock.html',0,'std::chrono']]],
+ ['system_5ferror_338',['system_error',['http://en.cppreference.com/w/cpp/error/system_error.html',0,'std::system_error'],['http://en.cppreference.com/w/cpp/error/system_error/system_error.html',0,'std::system_error::system_error()']]]
];
diff --git a/search/all_19.js b/search/all_19.js
index ecb309793..a270615ae 100644
--- a/search/all_19.js
+++ b/search/all_19.js
@@ -70,7 +70,7 @@ var searchData=
['testcase_5f2_67',['testCase_2',['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()'],['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()'],['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()']]],
['testcase_5f3_68',['testCase_3',['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()'],['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()'],['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()']]],
['testcases_69',['TestCases',['../d5/d58/class_test_cases.html',1,'']]],
- ['tests_70',['tests',['../d9/df4/namespacetests.html',1,'tests'],['../d1/db7/dynamic__programming_2armstrong__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): armstrong_number.cpp'],['../da/d0d/longest__common__string_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_common_string.cpp'],['../d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): Unbounded_0_1_Knapsack.cpp'],['../d7/d07/bidirectional__dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): bidirectional_dijkstra.cpp'],['../df/d82/breadth__first__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): breadth_first_search.cpp'],['../df/ddd/connected__components_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): connected_components.cpp'],['../da/d4b/depth__first__search__with__stack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): depth_first_search_with_stack.cpp'],['../d7/d1e/graph_2dijkstra_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): dijkstra.cpp'],['../d1/d9a/hopcroft__karp_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): hopcroft_karp.cpp'],['../de/dde/lowest__common__ancestor_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): lowest_common_ancestor.cpp'],['../de/d88/travelling__salesman__problem_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): travelling_salesman_problem.cpp'],['../d9/d1f/binary__addition_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binary_addition.cpp'],['../d4/d6c/boruvkas__minimum__spanning__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boruvkas_minimum_spanning_tree.cpp'],['../d3/d36/digit__separation_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): digit_separation.cpp'],['../df/dcb/greedy__algorithms_2dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): dijkstra.cpp'],['../db/d80/gale__shapley_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): gale_shapley.cpp'],['../d0/d51/approximate__pi_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): approximate_pi.cpp'],['../d8/db1/binomial__calculate_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binomial_calculate.cpp'],['../d5/df6/check__amicable__pair_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_amicable_pair.cpp'],['../d8/dd5/check__factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_factorial.cpp'],['../db/d93/check__prime_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_prime.cpp'],['../d5/d67/complex__numbers_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): complex_numbers.cpp'],['../d7/d89/double__factorial_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): double_factorial.cpp'],['../d9/d00/factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): factorial.cpp'],['../d4/d21/least__common__multiple_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): least_common_multiple.cpp'],['../d9/d44/magic__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): magic_number.cpp'],['../d6/d42/miller__rabin_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): miller_rabin.cpp'],['../de/dab/ncr__modulo__p_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): ncr_modulo_p.cpp'],['../d0/da2/number__of__positive__divisors_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): number_of_positive_divisors.cpp'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): sieve_of_eratosthenes.cpp'],['../db/d6b/kelvin__to__celsius_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): kelvin_to_celsius.cpp'],['../d4/db8/longest__substring__without__repeating__characters_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_substring_without_repeating_characters.cpp'],['../dc/de1/recursive__tree__traversal_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): recursive_tree_traversal.cpp'],['../d6/d2e/fenwick__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): fenwick_tree.cpp'],['../d9/d02/linear__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): linear_search.cpp'],['../d9/d5f/longest__increasing__subsequence__using__binary__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_increasing_subsequence_using_binary_search.cpp'],['../d9/dfd/comb__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): comb_sort.cpp'],['../dd/d0d/insertion__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): insertion_sort.cpp'],['../dd/d89/insertion__sort__recursive_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): insertion_sort_recursive.cpp'],['../d1/d21/quick__sort_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): quick_sort.cpp'],['../d3/d22/quick__sort__iterative_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): quick_sort_iterative.cpp'],['../d8/d61/radix__sort2_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): radix_sort2.cpp'],['../d3/db2/boyer__moore_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boyer_moore.cpp'],['../de/d6a/knuth__morris__pratt_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): knuth_morris_pratt.cpp']]],
+ ['tests_70',['tests',['../d9/df4/namespacetests.html',1,'tests'],['../d1/db7/dynamic__programming_2armstrong__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): armstrong_number.cpp'],['../da/d0d/longest__common__string_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_common_string.cpp'],['../d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): Unbounded_0_1_Knapsack.cpp'],['../d7/d07/bidirectional__dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): bidirectional_dijkstra.cpp'],['../df/d82/breadth__first__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): breadth_first_search.cpp'],['../df/ddd/connected__components_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): connected_components.cpp'],['../da/d4b/depth__first__search__with__stack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): depth_first_search_with_stack.cpp'],['../d7/d1e/graph_2dijkstra_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): dijkstra.cpp'],['../d1/d9a/hopcroft__karp_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): hopcroft_karp.cpp'],['../de/dde/lowest__common__ancestor_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): lowest_common_ancestor.cpp'],['../de/d88/travelling__salesman__problem_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): travelling_salesman_problem.cpp'],['../d9/d1f/binary__addition_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binary_addition.cpp'],['../d4/d6c/boruvkas__minimum__spanning__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boruvkas_minimum_spanning_tree.cpp'],['../d3/d36/digit__separation_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): digit_separation.cpp'],['../df/dcb/greedy__algorithms_2dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): dijkstra.cpp'],['../db/d80/gale__shapley_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): gale_shapley.cpp'],['../d0/d51/approximate__pi_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): approximate_pi.cpp'],['../d8/db1/binomial__calculate_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binomial_calculate.cpp'],['../d5/df6/check__amicable__pair_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_amicable_pair.cpp'],['../d8/dd5/check__factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_factorial.cpp'],['../db/d93/check__prime_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_prime.cpp'],['../d5/d67/complex__numbers_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): complex_numbers.cpp'],['../d7/d89/double__factorial_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): double_factorial.cpp'],['../d9/d00/factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): factorial.cpp'],['../d4/d21/least__common__multiple_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): least_common_multiple.cpp'],['../d9/d44/magic__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): magic_number.cpp'],['../d6/d42/miller__rabin_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): miller_rabin.cpp'],['../de/dab/ncr__modulo__p_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): ncr_modulo_p.cpp'],['../d0/da2/number__of__positive__divisors_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): number_of_positive_divisors.cpp'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): sieve_of_eratosthenes.cpp'],['../db/d6b/kelvin__to__celsius_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): kelvin_to_celsius.cpp'],['../d4/db8/longest__substring__without__repeating__characters_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_substring_without_repeating_characters.cpp'],['../dc/de1/recursive__tree__traversal_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): recursive_tree_traversal.cpp'],['../d6/d2e/fenwick__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): fenwick_tree.cpp'],['../d9/d02/linear__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): linear_search.cpp'],['../d9/d5f/longest__increasing__subsequence__using__binary__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_increasing_subsequence_using_binary_search.cpp'],['../d9/dfd/comb__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): comb_sort.cpp'],['../dd/d0d/insertion__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): insertion_sort.cpp'],['../dd/d89/insertion__sort__recursive_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): insertion_sort_recursive.cpp'],['../d1/d21/quick__sort_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): quick_sort.cpp'],['../d3/d22/quick__sort__iterative_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): quick_sort_iterative.cpp'],['../d8/d61/radix__sort2_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): radix_sort2.cpp'],['../d3/db2/boyer__moore_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boyer_moore.cpp'],['../de/d6a/knuth__morris__pratt_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): knuth_morris_pratt.cpp']]],
['text_5fsearch_2ecpp_71',['text_search.cpp',['../dc/db5/text__search_8cpp.html',1,'']]],
['tgamma_72',['tgamma',['http://en.cppreference.com/w/cpp/numeric/math/tgamma.html',0,'std']]],
['th_73',['TH',['../db/d3c/tower__of__hanoi_8cpp.html#ab037f72a5eac476535a6cfbbcb965417',1,'tower_of_hanoi.cpp']]],
diff --git a/search/functions_10.js b/search/functions_10.js
index b71a56f5c..1a8db56a6 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -63,7 +63,7 @@ var searchData=
['prime_5ffactorization_60',['prime_factorization',['../db/d0d/prime__factorization_8cpp.html#a0ece0145fb29a5cf48378c23dde2da46',1,'prime_factorization.cpp']]],
['primes_61',['primes',['../de/d9b/prime__numbers_8cpp.html#a9575f3a51eeb8a57d657b3db6a4b441a',1,'prime_numbers.cpp']]],
['print_62',['Print',['../d3/d95/classdata__structures_1_1tree__234_1_1_tree234.html#a2e9a9db7792cf5383f4c4cc418255165',1,'data_structures::tree_234::Tree234']]],
- ['print_63',['print',['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#ac341901e926b3fa3a796c64ca572f592',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print()'],['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#a424b17ddc672b25fe0bd9dc8612fba21',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print(Node *root)'],['../de/dcf/classoperations__on__datastructures_1_1reverse__binary__tree_1_1_binary_tree.html#a5cf972a2c994a4fa1a89fc77bd5ad503',1,'operations_on_datastructures::reverse_binary_tree::BinaryTree::print()'],['../d2/d2f/namespacegreedy__algorithms_1_1dijkstra.html#a7341d7c76a6145e991cdd231f689fca8',1,'greedy_algorithms::dijkstra::print()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a235843bdf82d2a6cc8596ae8fd3b8df9',1,'print(): sieve_of_eratosthenes.cpp'],['../da/d6d/namespaceoperations__on__datastructures.html#a6109193567a5b7e36a27f2b4865fce20',1,'operations_on_datastructures::print()']]],
+ ['print_63',['print',['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#ac341901e926b3fa3a796c64ca572f592',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print()'],['../d8/d7c/classoperations__on__datastructures_1_1circular__linked__list_1_1_circular_linked_list.html#a424b17ddc672b25fe0bd9dc8612fba21',1,'operations_on_datastructures::circular_linked_list::CircularLinkedList::print(Node *root)'],['../de/dcf/classoperations__on__datastructures_1_1reverse__binary__tree_1_1_binary_tree.html#a5cf972a2c994a4fa1a89fc77bd5ad503',1,'operations_on_datastructures::reverse_binary_tree::BinaryTree::print()'],['../d2/d2f/namespacegreedy__algorithms_1_1dijkstra.html#a7341d7c76a6145e991cdd231f689fca8',1,'greedy_algorithms::dijkstra::print()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a55bc4a221e584d33b79b322432ecc0f3',1,'math::sieve_of_eratosthenes::print()'],['../da/d6d/namespaceoperations__on__datastructures.html#a6109193567a5b7e36a27f2b4865fce20',1,'operations_on_datastructures::print()']]],
['print_5fprimes_64',['print_primes',['../dd/d47/namespacemath.html#ad09d59850865012a6fd95d89954c82e4',1,'math']]],
['print_5ftable_65',['print_table',['../d8/d41/namespacegames_1_1memory__game.html#ac589ef65abb0a6b9a7116ee0f9fd5280',1,'games::memory_game']]],
['printarray_66',['printArray',['../d2/d52/heap__sort_8cpp.html#a9ed3e1510afdf3edd06cf2b68769a767',1,'heap_sort.cpp']]],
diff --git a/search/functions_13.js b/search/functions_13.js
index c12de59d7..0d38f16e9 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -97,7 +97,7 @@ var searchData=
['shuffle_94',['shuffle',['http://en.cppreference.com/w/cpp/algorithm/random_shuffle.html',0,'std::shuffle()'],['../d5/d91/namespacesorting.html#a7bfe11bd4703eacd1dab93f25ec639c5',1,'sorting::shuffle()']]],
['shuffle_5forder_5fengine_95',['shuffle_order_engine',['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/shuffle_order_engine.html',0,'std::shuffle_order_engine']]],
['sieve_96',['Sieve',['../d4/d9c/primes__up__to__billion_8cpp.html#a031cada84819ed6426f58e4f7e81261c',1,'primes_up_to_billion.cpp']]],
- ['sieve_97',['sieve',['../dd/d47/namespacemath.html#a91366864111e1fac29722ca45e02ea8f',1,'math::sieve()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a7eebd5e7686a8db363f937b2f30d3818',1,'sieve(uint32_t N): sieve_of_eratosthenes.cpp']]],
+ ['sieve_97',['sieve',['../dd/d47/namespacemath.html#a91366864111e1fac29722ca45e02ea8f',1,'math::sieve()'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a22be949d160b26361f7e323310f7fa0c',1,'math::sieve_of_eratosthenes::sieve()']]],
['sieveoferatosthenes_98',['SieveOfEratosthenes',['../db/d0d/prime__factorization_8cpp.html#affe577b9bce8f604f5e2f861c63c7099',1,'prime_factorization.cpp']]],
['sig2hex_99',['sig2hex',['../d5/d96/md5_8cpp.html#aaee69c6136a841043f956de32116e348',1,'hashing::md5::sig2hex()'],['../d8/d7a/sha1_8cpp.html#aada0803ef851d831b7a290a924e3c228',1,'hashing::sha1::sig2hex()']]],
['sigmoid_100',['sigmoid',['../d2/d58/neural__network_8cpp.html#a23aa9d32bcbcd65cfc85f0a41e2afadc',1,'machine_learning::neural_network::activations']]],
diff --git a/search/functions_14.js b/search/functions_14.js
index 2ba77ccf1..cf111f195 100644
--- a/search/functions_14.js
+++ b/search/functions_14.js
@@ -52,7 +52,7 @@ var searchData=
['testcase_5f1_49',['testCase_1',['../d5/d58/class_test_cases.html#ac2636e8b5b9e053374c45bfcf0603008',1,'TestCases::testCase_1()'],['../d5/d58/class_test_cases.html#ac2636e8b5b9e053374c45bfcf0603008',1,'TestCases::testCase_1()'],['../d5/d58/class_test_cases.html#ac2636e8b5b9e053374c45bfcf0603008',1,'TestCases::testCase_1()']]],
['testcase_5f2_50',['testCase_2',['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()'],['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()'],['../d5/d58/class_test_cases.html#abae0148985f159b582a385cf399254e3',1,'TestCases::testCase_2()']]],
['testcase_5f3_51',['testCase_3',['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()'],['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()'],['../d5/d58/class_test_cases.html#ad9f95c09931625b41e3be1f88d1e28c5',1,'TestCases::testCase_3()']]],
- ['tests_52',['tests',['../d1/db7/dynamic__programming_2armstrong__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): armstrong_number.cpp'],['../da/d0d/longest__common__string_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_common_string.cpp'],['../d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): Unbounded_0_1_Knapsack.cpp'],['../d7/d07/bidirectional__dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): bidirectional_dijkstra.cpp'],['../df/d82/breadth__first__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): breadth_first_search.cpp'],['../df/ddd/connected__components_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): connected_components.cpp'],['../da/d4b/depth__first__search__with__stack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): depth_first_search_with_stack.cpp'],['../d7/d1e/graph_2dijkstra_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): dijkstra.cpp'],['../d1/d9a/hopcroft__karp_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): hopcroft_karp.cpp'],['../de/dde/lowest__common__ancestor_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): lowest_common_ancestor.cpp'],['../de/d88/travelling__salesman__problem_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): travelling_salesman_problem.cpp'],['../d9/d1f/binary__addition_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binary_addition.cpp'],['../d4/d6c/boruvkas__minimum__spanning__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boruvkas_minimum_spanning_tree.cpp'],['../d3/d36/digit__separation_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): digit_separation.cpp'],['../df/dcb/greedy__algorithms_2dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): dijkstra.cpp'],['../db/d80/gale__shapley_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): gale_shapley.cpp'],['../d0/d51/approximate__pi_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): approximate_pi.cpp'],['../d8/db1/binomial__calculate_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binomial_calculate.cpp'],['../d5/df6/check__amicable__pair_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_amicable_pair.cpp'],['../d8/dd5/check__factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_factorial.cpp'],['../db/d93/check__prime_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_prime.cpp'],['../d5/d67/complex__numbers_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): complex_numbers.cpp'],['../d7/d89/double__factorial_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): double_factorial.cpp'],['../d9/d00/factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): factorial.cpp'],['../d4/d21/least__common__multiple_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): least_common_multiple.cpp'],['../d9/d44/magic__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): magic_number.cpp'],['../d6/d42/miller__rabin_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): miller_rabin.cpp'],['../de/dab/ncr__modulo__p_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): ncr_modulo_p.cpp'],['../d0/da2/number__of__positive__divisors_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): number_of_positive_divisors.cpp'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): sieve_of_eratosthenes.cpp'],['../db/d6b/kelvin__to__celsius_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): kelvin_to_celsius.cpp'],['../d4/db8/longest__substring__without__repeating__characters_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_substring_without_repeating_characters.cpp'],['../dc/de1/recursive__tree__traversal_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): recursive_tree_traversal.cpp'],['../d6/d2e/fenwick__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): fenwick_tree.cpp'],['../d9/d02/linear__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): linear_search.cpp'],['../d9/d5f/longest__increasing__subsequence__using__binary__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_increasing_subsequence_using_binary_search.cpp'],['../d9/dfd/comb__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): comb_sort.cpp'],['../dd/d0d/insertion__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): insertion_sort.cpp'],['../dd/d89/insertion__sort__recursive_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): insertion_sort_recursive.cpp'],['../d1/d21/quick__sort_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): quick_sort.cpp'],['../d3/d22/quick__sort__iterative_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): quick_sort_iterative.cpp'],['../d8/d61/radix__sort2_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): radix_sort2.cpp'],['../d3/db2/boyer__moore_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boyer_moore.cpp'],['../de/d6a/knuth__morris__pratt_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): knuth_morris_pratt.cpp']]],
+ ['tests_52',['tests',['../d1/db7/dynamic__programming_2armstrong__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): armstrong_number.cpp'],['../da/d0d/longest__common__string_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_common_string.cpp'],['../d7/dcb/_unbounded__0__1___knapsack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): Unbounded_0_1_Knapsack.cpp'],['../d7/d07/bidirectional__dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): bidirectional_dijkstra.cpp'],['../df/d82/breadth__first__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): breadth_first_search.cpp'],['../df/ddd/connected__components_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): connected_components.cpp'],['../da/d4b/depth__first__search__with__stack_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): depth_first_search_with_stack.cpp'],['../d7/d1e/graph_2dijkstra_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): dijkstra.cpp'],['../d1/d9a/hopcroft__karp_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): hopcroft_karp.cpp'],['../de/dde/lowest__common__ancestor_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): lowest_common_ancestor.cpp'],['../de/d88/travelling__salesman__problem_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): travelling_salesman_problem.cpp'],['../d9/d1f/binary__addition_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binary_addition.cpp'],['../d4/d6c/boruvkas__minimum__spanning__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boruvkas_minimum_spanning_tree.cpp'],['../d3/d36/digit__separation_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): digit_separation.cpp'],['../df/dcb/greedy__algorithms_2dijkstra_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): dijkstra.cpp'],['../db/d80/gale__shapley_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): gale_shapley.cpp'],['../d0/d51/approximate__pi_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): approximate_pi.cpp'],['../d8/db1/binomial__calculate_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): binomial_calculate.cpp'],['../d5/df6/check__amicable__pair_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_amicable_pair.cpp'],['../d8/dd5/check__factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_factorial.cpp'],['../db/d93/check__prime_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): check_prime.cpp'],['../d5/d67/complex__numbers_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): complex_numbers.cpp'],['../d7/d89/double__factorial_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): double_factorial.cpp'],['../d9/d00/factorial_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): factorial.cpp'],['../d4/d21/least__common__multiple_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): least_common_multiple.cpp'],['../d9/d44/magic__number_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): magic_number.cpp'],['../d6/d42/miller__rabin_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): miller_rabin.cpp'],['../de/dab/ncr__modulo__p_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): ncr_modulo_p.cpp'],['../d0/da2/number__of__positive__divisors_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): number_of_positive_divisors.cpp'],['../d8/ddf/sieve__of__eratosthenes_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): sieve_of_eratosthenes.cpp'],['../db/d6b/kelvin__to__celsius_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): kelvin_to_celsius.cpp'],['../d4/db8/longest__substring__without__repeating__characters_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_substring_without_repeating_characters.cpp'],['../dc/de1/recursive__tree__traversal_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): recursive_tree_traversal.cpp'],['../d6/d2e/fenwick__tree_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): fenwick_tree.cpp'],['../d9/d02/linear__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): linear_search.cpp'],['../d9/d5f/longest__increasing__subsequence__using__binary__search_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): longest_increasing_subsequence_using_binary_search.cpp'],['../d9/dfd/comb__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): comb_sort.cpp'],['../dd/d0d/insertion__sort_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): insertion_sort.cpp'],['../dd/d89/insertion__sort__recursive_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): insertion_sort_recursive.cpp'],['../d1/d21/quick__sort_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): quick_sort.cpp'],['../d3/d22/quick__sort__iterative_8cpp.html#a88ec9ad42717780d6caaff9d3d6977f9',1,'tests(): quick_sort_iterative.cpp'],['../d8/d61/radix__sort2_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): radix_sort2.cpp'],['../d3/db2/boyer__moore_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): boyer_moore.cpp'],['../de/d6a/knuth__morris__pratt_8cpp.html#a483bb8ccf42aaf7375a83e91490eda1e',1,'tests(): knuth_morris_pratt.cpp']]],
['tgamma_53',['tgamma',['http://en.cppreference.com/w/cpp/numeric/math/tgamma.html',0,'std']]],
['th_54',['TH',['../db/d3c/tower__of__hanoi_8cpp.html#ab037f72a5eac476535a6cfbbcb965417',1,'tower_of_hanoi.cpp']]],
['thousands_5fsep_55',['thousands_sep',['http://en.cppreference.com/w/cpp/locale/moneypunct/thousands_sep.html',0,'std::moneypunct_byname::thousands_sep()'],['http://en.cppreference.com/w/cpp/locale/moneypunct/thousands_sep.html',0,'std::moneypunct::thousands_sep()'],['http://en.cppreference.com/w/cpp/locale/numpunct/thousands_sep.html',0,'std::numpunct_byname::thousands_sep()'],['http://en.cppreference.com/w/cpp/locale/numpunct/thousands_sep.html',0,'std::numpunct::thousands_sep()']]],
diff --git a/search/namespaces_12.js b/search/namespaces_12.js
index d9a14de0e..145688c48 100644
--- a/search/namespaces_12.js
+++ b/search/namespaces_12.js
@@ -6,27 +6,28 @@ var searchData=
['setkthbit_3',['setKthBit',['../d8/d88/namespaceset_kth_bit.html',1,'']]],
['sha_4',['SHA',['../de/dd3/namespace_s_h_a.html',1,'']]],
['shortest_5fcommon_5fsupersequence_5',['shortest_common_supersequence',['../d3/deb/namespaceshortest__common__supersequence.html',1,'']]],
- ['simpson_5fmethod_6',['simpson_method',['../d3/d6d/namespacesimpson__method.html',1,'']]],
- ['sorting_7',['sorting',['../d5/d91/namespacesorting.html',1,'']]],
- ['sparse_5ftable_8',['sparse_table',['../d9/d55/namespacesparse__table.html',1,'']]],
- ['spirograph_9',['spirograph',['../da/dd3/namespacespirograph.html',1,'']]],
- ['stack_5fusing_5fqueue_10',['stack_using_queue',['../df/d1c/namespacestack__using__queue.html',1,'']]],
- ['statistics_11',['statistics',['../d2/dcf/namespacestatistics.html',1,'']]],
- ['std_12',['std',['../d8/dcc/namespacestd.html',1,'']]],
- ['std_3a_3achrono_13',['chrono',['http://en.cppreference.com/w/d4/d0c/namespacestd_1_1chrono.html',0,'std']]],
- ['std_3a_3aexperimental_14',['experimental',['http://en.cppreference.com/w/de/d97/namespacestd_1_1experimental.html',0,'std']]],
- ['std_3a_3aregex_5fconstants_15',['regex_constants',['http://en.cppreference.com/w/db/da4/namespacestd_1_1regex__constants.html',0,'std']]],
- ['std_3a_3arel_5fops_16',['rel_ops',['http://en.cppreference.com/w/da/d42/namespacestd_1_1rel__ops.html',0,'std']]],
- ['std_3a_3athis_5fthread_17',['this_thread',['http://en.cppreference.com/w/d7/dbf/namespacestd_1_1this__thread.html',0,'std']]],
- ['strand_18',['strand',['../d8/d1d/namespacestrand.html',1,'']]],
- ['strassens_5fmultiplication_19',['strassens_multiplication',['../d3/d91/namespacestrassens__multiplication.html',1,'']]],
- ['string_20',['string',['../d6/dd6/namespacestring.html',1,'']]],
- ['string_5fsearch_21',['string_search',['../d9/d03/namespacestring__search.html',1,'']]],
- ['strings_22',['strings',['../df/dcb/namespacestrings.html',1,'']]],
- ['strings_3a_3aboyer_5fmoore_23',['boyer_moore',['../d0/dbc/namespacestrings_1_1boyer__moore.html',1,'strings']]],
- ['subarray_5fsum_24',['subarray_sum',['../df/d74/namespacesubarray__sum.html',1,'']]],
- ['sublist_5fsearch_25',['sublist_search',['../d9/def/namespacesublist__search.html',1,'']]],
- ['subset_5fsum_26',['subset_sum',['../dc/d3a/namespacesubset__sum.html',1,'']]],
- ['subsets_27',['Subsets',['../de/d95/namespace_subsets.html',1,'']]],
- ['sudoku_5fsolver_28',['sudoku_solver',['../d8/d9f/namespacesudoku__solver.html',1,'']]]
+ ['sieve_5fof_5feratosthenes_6',['sieve_of_eratosthenes',['../d2/db0/namespacesieve__of__eratosthenes.html',1,'']]],
+ ['simpson_5fmethod_7',['simpson_method',['../d3/d6d/namespacesimpson__method.html',1,'']]],
+ ['sorting_8',['sorting',['../d5/d91/namespacesorting.html',1,'']]],
+ ['sparse_5ftable_9',['sparse_table',['../d9/d55/namespacesparse__table.html',1,'']]],
+ ['spirograph_10',['spirograph',['../da/dd3/namespacespirograph.html',1,'']]],
+ ['stack_5fusing_5fqueue_11',['stack_using_queue',['../df/d1c/namespacestack__using__queue.html',1,'']]],
+ ['statistics_12',['statistics',['../d2/dcf/namespacestatistics.html',1,'']]],
+ ['std_13',['std',['../d8/dcc/namespacestd.html',1,'']]],
+ ['std_3a_3achrono_14',['chrono',['http://en.cppreference.com/w/d4/d0c/namespacestd_1_1chrono.html',0,'std']]],
+ ['std_3a_3aexperimental_15',['experimental',['http://en.cppreference.com/w/de/d97/namespacestd_1_1experimental.html',0,'std']]],
+ ['std_3a_3aregex_5fconstants_16',['regex_constants',['http://en.cppreference.com/w/db/da4/namespacestd_1_1regex__constants.html',0,'std']]],
+ ['std_3a_3arel_5fops_17',['rel_ops',['http://en.cppreference.com/w/da/d42/namespacestd_1_1rel__ops.html',0,'std']]],
+ ['std_3a_3athis_5fthread_18',['this_thread',['http://en.cppreference.com/w/d7/dbf/namespacestd_1_1this__thread.html',0,'std']]],
+ ['strand_19',['strand',['../d8/d1d/namespacestrand.html',1,'']]],
+ ['strassens_5fmultiplication_20',['strassens_multiplication',['../d3/d91/namespacestrassens__multiplication.html',1,'']]],
+ ['string_21',['string',['../d6/dd6/namespacestring.html',1,'']]],
+ ['string_5fsearch_22',['string_search',['../d9/d03/namespacestring__search.html',1,'']]],
+ ['strings_23',['strings',['../df/dcb/namespacestrings.html',1,'']]],
+ ['strings_3a_3aboyer_5fmoore_24',['boyer_moore',['../d0/dbc/namespacestrings_1_1boyer__moore.html',1,'strings']]],
+ ['subarray_5fsum_25',['subarray_sum',['../df/d74/namespacesubarray__sum.html',1,'']]],
+ ['sublist_5fsearch_26',['sublist_search',['../d9/def/namespacesublist__search.html',1,'']]],
+ ['subset_5fsum_27',['subset_sum',['../dc/d3a/namespacesubset__sum.html',1,'']]],
+ ['subsets_28',['Subsets',['../de/d95/namespace_subsets.html',1,'']]],
+ ['sudoku_5fsolver_29',['sudoku_solver',['../d8/d9f/namespacesudoku__solver.html',1,'']]]
];