-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path11-Delete-a-node.py
More file actions
63 lines (52 loc) · 1.24 KB
/
11-Delete-a-node.py
File metadata and controls
63 lines (52 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/python3
import math
import os
import random
import re
import sys
class SinglyLinkedListNode:
def __init__(self, node_data):
self.data = node_data
self.next = None
class SinglyLinkedList:
def __init__(self):
self.head = None
def traverse(self):
temp = self.head
while(temp):
print(temp.data)
temp = temp.next
# def print_singly_linked_list(node, sep, fptr):
# while node:
# fptr.write(str(node.data))
# node = node.next
# if node:
# fptr.write(sep)
# Complete the insertNodeAtTail function below.
#
# For your reference:
#
# SinglyLinkedListNode:
# int data
# SinglyLinkedListNode next
def deleteNode(head, position):
if position == 0:
p = head.next
head = p
return head
p = head
while position-1 > 0:
p = p.next
position = position-1
temp = p
p = p.next
temp.next = p.next
return head
# if head == None:
# head = SinglyLinkedListNode(data)
# return head
# else:
# p = head
# head = SinglyLinkedListNode(data)
# head.next = p
# return head