17 lines
390 B
Python
17 lines
390 B
Python
|
from list_composite_pattern import Liste
|
||
|
|
||
|
liste = Liste()
|
||
|
liste.insert(3)
|
||
|
liste.insert(2)
|
||
|
liste.insert(1)
|
||
|
|
||
|
print("Inhalt der Liste:")
|
||
|
liste.show_list()
|
||
|
|
||
|
print("Länge der Liste:", liste.length())
|
||
|
|
||
|
print("Suche nach Wert 2:", liste.search(2).data if liste.search(2) else "Nicht gefunden")
|
||
|
|
||
|
liste.insert_before(1.5, 2)
|
||
|
print("Inhalt der Liste nach Einfügen von 1.5 vor 2:")
|
||
|
liste.show_list()
|