Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions heaps/heap_sort.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
from heaps.min_heap import MinHeap


def heap_sort(list):
""" This method uses a heap to sort an array.
Time Complexity: ?
Space Complexity: ?
Time Complexity: On
Space Complexity: On
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✨ Time complexity here will be O(n log n) where n is length of list. For each of n items in list, you perform heap.add()/heap.remove() which are both log n operations.

"""
pass
result = []
heap = MinHeap()

for item in list:
heap.add(item)

while len(heap.store) > 0:
result.append(heap.remove())

return result
80 changes: 59 additions & 21 deletions heaps/min_heap.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class HeapNode:

def __init__(self, key, value):
self.key = key
self.value = value
Expand All @@ -10,67 +10,105 @@ def __str__(self):
def __repr__(self):
return str(self.value)


class MinHeap:

def __init__(self):
self.store = []


def add(self, key, value = None):
def add(self, key, value=None):
""" This method adds a HeapNode instance to the heap
If value == None the new node's value should be set to key
Time Complexity: ?
Space Complexity: ?
Time Complexity: Ologn
Space Complexity: On
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✨ The space complexity here is determined by the recursive call stack of heap_up which is just O(log n)

"""
pass
if value is None:
value = key

node = HeapNode(key, value)

self.store.append(node)
index = len(self.store) - 1

self.heap_up(index)

def remove(self):
""" This method removes and returns an element from the heap
maintaining the heap structure
Time Complexity: ?
Space Complexity: ?
Time Complexity: Ologn
Space Complexity: O1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✨ Because of the recursive call stack of heap_down, space complexity is O(log n)

"""
pass
if self.empty():
return None

self.swap(0, len(self.store)-1)
result = self.store.pop()
self.heap_down(0)

return result.value


def __str__(self):
""" This method lets you print the heap, when you're testing your app.
"""
if len(self.store) == 0:
return "[]"
return f"[{', '.join([str(element) for element in self.store])}]"


def empty(self):
""" This method returns true if the heap is empty
Time complexity: ?
Space complexity: ?
Time complexity: O1
Space complexity: 01
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"""
pass

return len(self.store) == 0

def heap_up(self, index):
""" This helper method takes an index and
moves the corresponding element up the heap, if
it is less than it's parent node until the Heap
property is reestablished.

This could be **very** helpful for the add method.
Time complexity: ?
Space complexity: ?
Time complexity: Ologn
Space complexity: O1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✨ Because of the recursive call stack, space complexity is O(log n)

"""
pass
if index == 0:
return None

# left = index * 2 +
parent = (index - 1) // 2

if self.store[index].key < self.store[parent].key:
self.swap(index, parent)
self.heap_up(parent)

def heap_down(self, index):
""" This helper method takes an index and
moves the corresponding element down the heap if it's
larger than either of its children and continues until
the heap property is reestablished.
Time Complexity: Ologn
Space Complexity: O1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✨ Space complexity is O(log n) here because of the recursive call stack

[2, 5, 3, 6 ]
0 1 2 3
"""
pass
left = index * 2 + 1
right = index * 2 + 2

if left < len(self.store): # check if left node is valid
if right < len(self.store): # determine if left or right is smaller
if self.store[left].key < self.store[right].key:
smaller_child = left
self.swap(index, smaller_child)
self.heap_down(smaller_child)
else:
smaller_child = right
self.swap(index, smaller_child)
self.heap_down(smaller_child)
elif self.store[index].key > self.store[left].key:
smaller_child = left
self.swap(index, smaller_child)
self.heap_down(smaller_child)


def swap(self, index_1, index_2):
""" Swaps two elements in self.store
at index_1 and index_2
Expand Down