-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path06_doublyLL_pairs_with_sum.py
78 lines (61 loc) · 1.57 KB
/
06_doublyLL_pairs_with_sum.py
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
class Node:
def __init__(self, data):
self.data = data
self.next = None
self.prev = None
class DoublyLinkedList:
def __init__(self):
self.head = None
def append(self, data):
new_node = Node(data)
if self.head is None:
new_node.prev = None
self.head = new_node
else:
cur = self.head
while cur.next:
cur = cur.next
cur.next = new_node
new_node.prev = cur
new_node.next = None
def prepend(self, data):
new_node = Node(data)
if self.head is None:
new_node.prev = None
self.head = new_node
else:
self.head.prev = new_node
new_node.next = self.head
self.head = new_node
new_node.prev = None
def print_list(self):
cur = self.head
while cur:
print(cur.data)
cur = cur.next
def pairs_with_sum(self, sum_val):
pairs = list()
p = self.head
q = None
while p:
q = p.next
while q:
if p.data + q.data == sum_val:
pairs.append("(" + str(p.data) + ", " + str(q.data) + ")")
q = q.next
p = p.next
return pairs
dllist = DoublyLinkedList()
dllist.append(1)
dllist.append(2)
dllist.append(3)
dllist.append(4)
dllist.append(5)
dllist.print_list()
print("\n")
X = dllist.pairs_with_sum(6)
Y = dllist.pairs_with_sum(0)
Z = dllist.pairs_with_sum(5)
print(X)
print(Y)
print(Z)