zwischenstand
parent
3a48bd16fb
commit
2c895010ba
|
|
@ -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) {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue