Yash's Site

Archived Content


Binary Heaps

yash101

Today, we will discuss a binary heaps, a common data structure in programming.
Heaps have multiple uses in programming including:

Priority Queues : a queue-like data structure which has a priority field as a key. In a priority queue implemented with a min-heap, the element with the lowest value for priority will the next available element. In a priority queue implemented with a max-heap, the element with the highest value for priority will be the next available element.

Finding the kโ€™th [small/larg]est element : Heaps are really good at solving this problem, because after creating a heap from the target elements, the lowest (min-heap implementation) or the highest (max-heap implementation) values can be extracted with ease.

Read Article ๐Ÿ“–๐Ÿ‘‰๐Ÿผ

About Me

yash101

Iโ€™m Devyash, a junior studying computer science at Arizona State University.
Iโ€™m an extroverted nerd, an electronics junkie, and a computer scientist. I
enjoy working on large, difficult projects, although, it is quite rare that I

Read Article ๐Ÿ“–๐Ÿ‘‰๐Ÿผ