diff --git a/d8/dfa/median__search2_8cpp.html b/d8/dfa/median__search2_8cpp.html index 674b78766..7a5b2ba95 100644 --- a/d8/dfa/median__search2_8cpp.html +++ b/d8/dfa/median__search2_8cpp.html @@ -301,7 +301,7 @@ Here is the call graph for this function:
103 }
104 temp->next = nullptr;
105
-
106 ListNode* median = search::median_search2::middleNode(head1);
+
106 const ListNode* const median = search::median_search2::middleNode(head1);
107 assert(3 == median->val); // 3 is the value of the median node.
108 search::median_search2::deleteAll(head1);
109 std::cout << "test case:1 passed\n";
@@ -322,7 +322,7 @@ Here is the call graph for this function:
124 }
125 temp2->next = nullptr;
126
-
127 ListNode* median1 = search::median_search2::middleNode(head2);
+
127 const ListNode* const median1 = search::median_search2::middleNode(head2);
128 assert(4 == median1->val); // 4 is the value of the median node.
129 search::median_search2::deleteAll(head2);
130 std::cout << "test case:2 passed\n";