Skip to content

Instantly share code, notes, and snippets.

@sherwinyu
Created June 29, 2015 17:25
Show Gist options
  • Save sherwinyu/bdfbff6a51151dfacedb to your computer and use it in GitHub Desktop.
Save sherwinyu/bdfbff6a51151dfacedb to your computer and use it in GitHub Desktop.
Python linked list impl
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