From 09502d0535748b32dbe2cd59c21d03150b9db3f3 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 4 Apr 2025 13:26:30 -0400 Subject: [PATCH] clarify that it's a min heap --- lectures/23_priority_queues/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lectures/23_priority_queues/README.md b/lectures/23_priority_queues/README.md index 5d19ce4..ad32397 100644 --- a/lectures/23_priority_queues/README.md +++ b/lectures/23_priority_queues/README.md @@ -122,9 +122,7 @@ Lambda is new to the C++ language (part of C++11). But lambda is a core piece of ## 23.4 Exercise: Drawing Binary Heaps -- Draw two different binary heaps with these values: 52 13 48 7 32 40 18 25 4 - -- Draw several other trees with these values which are not binary heaps. +- Draw two different binary heaps (Min Heap) with these values: 52 13 48 7 32 40 18 25 4 ## 23.5 STL priority_queue