-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path03_03_orthogonal_e.py
More file actions
128 lines (96 loc) · 2.95 KB
/
03_03_orthogonal_e.py
File metadata and controls
128 lines (96 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
class Node:
def __init__(self, data):
self.data = data
self.next = None
class LL:
def __init__(self):
self.head = None
def append(self, data):
new_node = Node(data)
if not self.head:
self.head = new_node
return
current = self.head
while current.next:
current = current.next
current.next = new_node
def search(self, data):
current = self.head
while current:
if current.data == data:
return True
current = current.next
return False
def delete(self, data):
if not self.head:
return
if self.head.data == data:
self.head = self.head.next
return
current = self.head
while current.next:
if current.next.data == data:
current.next = current.next.next
return
current = current.next
def insert(self, data):
new_node = Node(data)
if not self.head:
self.head = new_node
return
if self.head.data > data:
self.head = new_node
return
current = self.head
while current.next and current.next.data < data:
current = current.next
new_node.next = current.next
current.next = new_node
def print(self):
output = []
current = self.head
while current:
output.append(str(current.data))
current = current.next
print('->'.join(output))
class ONode:
def __init__(self, data, row, col):
self.data = data
self.row = row
self.col = col
self.down = None
self.right = None
class OLL:
def __init__(self, rows, cols):
self.row_head = [ONode(None, i, -1) for i in range(0, rows)]
self.col_head = [ONode(None, -1, i) for i in range(0, cols)]
def insert(self, new_node):
current = self.row_head[new_node.row]
while current.right and current.right.col < new_node.col:
current = current.right
new_node.right = current.right
current.right = new_node
current = self.col_head[new_node.col]
while current.down and current.down.row < new_node.row:
current = current.down
new_node.down = current.down
current.down = new_node
def print(self):
for row in self.row_head:
output = ['0'] * len(self.col_head)
current = row
while current.right:
current = current.right
output[current.col] = str(current.data)
print(' '.join(output))
# 3 0 0 0 4
# 0 0 2 0 0
# 0 1 0 0 0
# 0 0 0 0 0
# OLL(row, col)
oll = OLL(4, 5)
oll.insert(ONode(3, 0, 0))
oll.insert(ONode(4, 0, 4))
oll.insert(ONode(2, 1, 2))
oll.insert(ONode(1, 2, 1))
oll.print()