From b3e06a376a5252742c3ddb449e7137add84729a0 Mon Sep 17 00:00:00 2001 From: trucdev Date: Mon, 18 Nov 2024 21:24:21 -0600 Subject: [PATCH] add in class content for heap --- DataStructure/17_Heap/ch17_heap_array.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/DataStructure/17_Heap/ch17_heap_array.cpp b/DataStructure/17_Heap/ch17_heap_array.cpp index 4c3fe1f..41ad261 100644 --- a/DataStructure/17_Heap/ch17_heap_array.cpp +++ b/DataStructure/17_Heap/ch17_heap_array.cpp @@ -2,10 +2,11 @@ using namespace std; /* * - Heap? -* - Max Heap, Min Heap +* - Max Heap, Min Heap? * - Heap Sort? -* - Reference Only: https://www.codingdrills.com/tutorial/heap-data-structure/introduction-to-heap-data-structure -* - https://www.youtube.com/watch?v=Dvq-YKeuO9Y +* - Reference Only: +* https://www.codingdrills.com/tutorial/heap-data-structure/introduction-to-heap-data-structure +* https://www.youtube.com/watch?v=Dvq-YKeuO9Y */ // Function to swap two elements void swap(int &first, int &second) {