zwischenstand

main
student 2026-04-01 13:00:14 +02:00
parent 3a48bd16fb
commit 2c895010ba
2 changed files with 25 additions and 1 deletions

View File

@ -11,6 +11,7 @@ class Knoten {
} }
class LinkedList { class LinkedList {
int begin;
public static void einfügen(int zahl) { public static void einfügen(int zahl) {

View File

@ -2,8 +2,31 @@
public class Aufgabe2 { public class Aufgabe2 {
public static void main(String[] args) { public static void main(String[] args) {
// TODO Auto-generated method stub
} }
public static int[] radixsort(int[] arr) {
int lang;
int länge;
for (int i = 0; i < arr.length-1;i++) {
}
for (int i = arr.length-1; i > 0;i--) {
}
return arr;
}
public static int ziffer(int zahl) {
int relevant = 0;
for (int i = 2; i < 9;i++) {
if(zahl%i == 0)
return relevant=i;
}
}
} }