From a73d42271e24f16578ebbf2f16e051e27ea26038 Mon Sep 17 00:00:00 2001 From: 3024753 <3024753@stud.hs-mannheim.de> Date: Wed, 25 Mar 2026 17:53:55 +0100 Subject: [PATCH] =?UTF-8?q?InsertionSort=20nochmals=20ge=C3=BCbt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PR2pvl/src/SelectionSort.java | 70 +++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/PR2pvl/src/SelectionSort.java b/PR2pvl/src/SelectionSort.java index 8e87a4f..cae575e 100644 --- a/PR2pvl/src/SelectionSort.java +++ b/PR2pvl/src/SelectionSort.java @@ -53,6 +53,76 @@ public class SelectionSort { System.out.print(data[i] + " "); System.out.println(); } + + + public static void selectionsortUebung(int[] arr){ + int temp; + + for(int i = 0; i