grundgerüst
parent
79669773ca
commit
3a48bd16fb
|
|
@ -6,4 +6,26 @@ public class Aufgabe1 {
|
|||
|
||||
}
|
||||
|
||||
class Knoten {
|
||||
int zahl;
|
||||
}
|
||||
|
||||
class LinkedList {
|
||||
|
||||
public static void einfügen(int zahl) {
|
||||
|
||||
}
|
||||
|
||||
public static int auslesen(int index) {
|
||||
int zahl;
|
||||
return zahl;
|
||||
}
|
||||
|
||||
public static void löschen(int index) {
|
||||
|
||||
}
|
||||
|
||||
System.out.println(IndexOutOfBoundsException(""));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue