Skip to content

Code for Heap data structure #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 5, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Fixing print statement
  • Loading branch information
Ankit Agarwal committed Apr 1, 2017
commit fa1e65ee0fc6220c17712fa135b3d81bc54deadd
3 changes: 1 addition & 2 deletions data_structures/Heap/heap.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ def insert(self,data):
curr = curr/2

def display(self):
for item in self.h:
print item,
print (self.h)

def main():
l = list(map(int,raw_input().split()))
Expand Down