Re: Link List in Python

2006-01-12 Thread Mike Meyer
"sri2097" <[EMAIL PROTECTED]> writes: > Hi all, I have written a Link list implementation in Python (Although > it's not needed with Lists and Dictionaries present. I tried it just > for the kicks !). Anyway here is the code - Generally very nice. > # Creating a class comprising of node in Link L

Link List in Python

2006-01-12 Thread sri2097
Hi all, I have written a Link list implementation in Python (Although it's not needed with Lists and Dictionaries present. I tried it just for the kicks !). Anyway here is the code - # Creating a class comprising of node in Link List. class linklist: def __init__(self, data=None,link=None):