diff --git a/d8/d9c/union__of__two__arrays_8cpp.html b/d8/d9c/union__of__two__arrays_8cpp.html
index 9043dbcbc..eac9e0e9b 100644
--- a/d8/d9c/union__of__two__arrays_8cpp.html
+++ b/d8/d9c/union__of__two__arrays_8cpp.html
@@ -154,7 +154,8 @@ Functions
Implementation for the Union of two sorted Arrays algorithm.
-
The Union of two arrays is the collection of all the unique elements in the first array, combined with all of the unique elements of a second array. This implementation uses ordered arrays, and an algorithm to correctly order them and return the result as a new array (vector).
- Author
- Alvin
+
The Union of two arrays is the collection of all the unique elements in the first array, combined with all of the unique elements of a second array. This implementation uses ordered arrays, and an algorithm to correctly order them and return the result as a new array (vector).
- See also
- intersection_of_two_arrays.cpp
+
- Author
- Alvin
-
-
-
-
static void test()
Function to test the correctness of get_union() function.
Definition: union_of_two_arrays.cpp:203
+
+
+
+
+
static void test()
Function to test the correctness of get_union() function.
Definition: union_of_two_arrays.cpp:204
@@ -213,14 +214,14 @@ Here is the call graph for this function:
Function to test the correctness of get_union() function.
- Returns
- void
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
void test1()
A Test to check an simple case.
Definition: array_right_rotation.cpp:76
void test4()
A Test to check a very large input.
Definition: array_right_rotation.cpp:121
void test3()
A Test to check an invalid shift value.
Definition: array_right_rotation.cpp:106
diff --git a/da/d6d/namespaceoperations__on__datastructures.html b/da/d6d/namespaceoperations__on__datastructures.html
index 7366af174..6e3d2bfe0 100644
--- a/da/d6d/namespaceoperations__on__datastructures.html
+++ b/da/d6d/namespaceoperations__on__datastructures.html
@@ -263,46 +263,46 @@ Here is the call graph for this function:
< Add the element if it is unique
< Add remaining elements
< Add the element if it is unique
-
-
-
-
-
53 size_t f_length = first.
size();
-
54 size_t s_length = second.
size();
-
-
-
57 while (f_index < f_length && s_index < s_length) {
-
58 if (first[f_index] < second[s_index]) {
-
59 next = first[f_index];
-
-
61 }
else if (first[f_index] > second[s_index]) {
-
62 next = second[s_index];
-
-
-
65 next = first[f_index];
-
-
-
-
69 if ((res.
size() == 0) || (next != res.
back())) {
-
-
-
-
73 while (f_index < f_length) {
-
74 next = first[f_index];
-
75 if ((res.
size() == 0) || (next != res.
back())) {
-
-
-
-
-
80 while (s_index < s_length) {
-
81 next = second[s_index];
-
82 if ((res.
size() == 0) || (next != res.
back())) {
-
-
-
-
-
-
+
+
+
+
+
54 size_t f_length = first.
size();
+
55 size_t s_length = second.
size();
+
+
+
58 while (f_index < f_length && s_index < s_length) {
+
59 if (first[f_index] < second[s_index]) {
+
60 next = first[f_index];
+
+
62 }
else if (first[f_index] > second[s_index]) {
+
63 next = second[s_index];
+
+
+
66 next = first[f_index];
+
+
+
+
70 if ((res.
size() == 0) || (next != res.
back())) {
+
+
+
+
74 while (f_index < f_length) {
+
75 next = first[f_index];
+
76 if ((res.
size() == 0) || (next != res.
back())) {
+
+
+
+
+
81 while (s_index < s_length) {
+
82 next = second[s_index];
+
83 if ((res.
size() == 0) || (next != res.
back())) {
+
+
+
+
+
+