grundgerüst
parent
79669773ca
commit
3a48bd16fb
|
|
@ -5,5 +5,27 @@ public class Aufgabe1 {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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