You are viewing a single comment's thread. Return to all comments →
def deleteNode(llist, position): if llist==None: return None else: pre=llist count=1 while pre.next is not None and count
Delete a Node
You are viewing a single comment's thread. Return to all comments →
def deleteNode(llist, position): if llist==None: return None else: pre=llist count=1 while pre.next is not None and count