commit aa622e304d48c12c596d3dda10704721ebfae7ce Author: Andreas Wurst <1720808@stud.hs-mannheim.de> Date: Tue Jun 17 10:10:34 2025 +0200 List Element hinzufügen diff --git a/ListElement.java b/ListElement.java new file mode 100644 index 0000000..c74f244 --- /dev/null +++ b/ListElement.java @@ -0,0 +1,17 @@ +/* + * Created on 21.11.2003 + * + * To change the template for this generated file go to + * Window>Preferences>Java>Code Generation>Code and Comments + */ + +/** + * @author klaus + * + * To change the template for this generated type comment go to + * Window>Preferences>Java>Code Generation>Code and Comments + */ +public class ListElement { + int content; + ListElement next; +}