forked from cartoon-raccoon/gdscutm-c-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedlist.py
96 lines (71 loc) · 2.06 KB
/
linkedlist.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"""
An equivalent Python implementation of the linked list
that was implemented in `linkedlist.c`.
"""
from typing import Any
class _Node(object):
"""Equivalent to `struct node`."""
def __init__(self, item):
self.item = item
self.next = None
class LinkedList(object):
"""Equivalent to `struct linkedlist`."""
head: _Node
# equivalent to linkedlist_create.
def __init__(self) -> None:
self.head = None
# equivalent to linkedlist_index.
def __getitem__(self, idx: int) -> Any:
if self.head is None:
raise IndexError
cur = self.head
while idx > 1:
cur = cur.next
if cur is None:
raise IndexError
return cur.item
# almost equivalent to linkedlist_print,
# but returns a string rather than printing directly.
def __str__(self) -> str:
ret = ""
cur = self.head
while cur is not None:
ret += f"{cur.item} -> "
cur = cur.next
ret += "END"
return ret
def push(self, item: Any) -> None:
temp = self.head
self.head = _Node(item)
self.head.next = temp
def append(self, item: Any) -> None:
if self.head is None:
self.head = _Node(item)
else:
cur = self.head
while cur.next is not None:
cur = cur.next
cur.next = _Node(item)
def pop(self) -> Any:
if self.head is None:
raise IndexError
ret = self.head.item
self.head = self.head.next
return ret
def remove(self, idx: int) -> Any:
if self.head is None:
raise IndexError
cur = self.head
for _ in range(idx):
cur = cur.next
if cur is None:
raise IndexError
return cur.item
# equivalent to `int main(void)`.
if __name__ == "__main__":
lst = LinkedList()
for i in range(5):
lst.push(i + 1)
lst.append(6)
lst.append(7)
print(lst)