mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-04 21:00:48 +02:00
Add snake struct
This commit is contained in:
parent
bcb6661a4c
commit
338f87686c
@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
class List:
|
||||||
|
def __init__(self, val, next):
|
||||||
|
self.val = val
|
||||||
|
self.next = next
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
if self.next == None:
|
||||||
|
return(f"{self.val} -> None")
|
||||||
|
else:
|
||||||
|
return(f"{self.val} -> {str(self.next)}")
|
||||||
|
|
||||||
|
def is_empty(L):
|
||||||
|
return L is None
|
||||||
|
|
||||||
|
def List_add(L, value):
|
||||||
|
if L == None:
|
||||||
|
return List(value, None)
|
||||||
|
else:
|
||||||
|
return List(L.val, List.List_add(L.next, value))
|
||||||
|
|
||||||
|
def List_size(L):
|
||||||
|
i = 0
|
||||||
|
while L is not None:
|
||||||
|
i += 1
|
||||||
|
L = L.next
|
||||||
|
|
||||||
|
return i
|
Loading…
x
Reference in New Issue
Block a user