Created
June 29, 2015 17:25
-
-
Save sherwinyu/bdfbff6a51151dfacedb to your computer and use it in GitHub Desktop.
Python linked list impl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node: | |
def __init__(self, value=None, next=None, prev=None): | |
self.value = value | |
self.next = next | |
self.prev = prev | |
def __repr__(self): | |
return "" % self.value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment