32 lines
591 B
Python
32 lines
591 B
Python
from list import Liste
|
|
|
|
liste = Liste()
|
|
liste.insert(1)
|
|
liste.insert(2)
|
|
liste.insert(4)
|
|
liste.insert(3)
|
|
|
|
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")
|
|
|
|
print("---")
|
|
|
|
#liste.remove(1)
|
|
#liste.show_list()
|
|
|
|
#liste.insert_before(1, 2)
|
|
#print("Inhalt der Liste nach Einfügen von 1.5 vor 2:")
|
|
#liste.show_list()
|
|
#
|
|
# print("---")
|
|
# liste.remove_last()
|
|
# liste.remove_last()
|
|
# liste.show_list()
|
|
|
|
#liste.insert_sorted(5)
|
|
#liste.show_list()
|
|
print(liste.search_max()) |