Sorting algorthyms
parent
d4362b1cf4
commit
15d35036b2
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_17" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="jdk" jdkName="17" jdkType="JavaSDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit5.8.1">
|
||||
|
@ -23,5 +23,31 @@
|
|||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit4">
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit5.8.1">
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.1/junit-jupiter-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.1/junit-jupiter-api-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.1/junit-platform-commons-1.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.1/junit-jupiter-params-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.1/junit-jupiter-engine-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.1/junit-platform-engine-1.8.1.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Kotlin2JvmCompilerArguments">
|
||||
<option name="jvmTarget" value="17" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,11 +1,15 @@
|
|||
import domain.C3PO;
|
||||
import domain.R2D2;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
||||
C3PO Herbert = new C3PO(0, "Herbert");
|
||||
int[] input = {6,5,4,3,2,1};
|
||||
|
||||
C3PO c = new C3PO(1000, "cc");
|
||||
System.out.println(c.sorting(input));
|
||||
R2D2 r = new R2D2(1000, "cc");
|
||||
System.out.println(r.sorting(input));
|
||||
|
||||
//just some testing
|
||||
/*C3PO Herbert = new C3PO(0, "Herbert");
|
||||
|
|
|
@ -1,10 +1,34 @@
|
|||
package domain;
|
||||
|
||||
public class C3PO extends RobotBasics {
|
||||
import org.junit.jupiter.params.shadow.com.univocity.parsers.common.fields.ColumnMapping;
|
||||
import robot.interfaces.Sorting;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class C3PO extends RobotBasics implements Sorting {
|
||||
public C3PO(int id, String name){
|
||||
super(id, name);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//@Override
|
||||
public String sorting(int[] arr) {
|
||||
//Insertionsort
|
||||
for(int i=1;i<arr.length;i++){
|
||||
int b = i-1;
|
||||
int key = arr[i];
|
||||
while(b>=0 && arr[b]>key) arr[b+1] = arr[b--];
|
||||
arr[b+1] = key;
|
||||
}
|
||||
//Writing all values of the array into a String
|
||||
String result = "" + arr[0];
|
||||
if(arr.length > 1) {
|
||||
for (int i = 1; i < arr.length; i++) {
|
||||
result += ";" + arr[i];
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,6 +16,7 @@ class C3POTest {
|
|||
|
||||
|
||||
//Tests for basic functions
|
||||
/**
|
||||
@Test
|
||||
void getId() {
|
||||
|
||||
|
@ -42,6 +43,6 @@ class C3POTest {
|
|||
assertTrue(Herbert.isPowerOn());
|
||||
}
|
||||
|
||||
|
||||
**/
|
||||
|
||||
}
|
|
@ -1,5 +1,9 @@
|
|||
package domain;
|
||||
|
||||
import robot.interfaces.Sorting;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class R2D2 extends RobotBasics {
|
||||
/**
|
||||
* Constructor
|
||||
|
@ -8,7 +12,35 @@ public class R2D2 extends RobotBasics {
|
|||
*/
|
||||
public R2D2(int id, String name){
|
||||
super(id, name);
|
||||
}
|
||||
|
||||
public String sorting(int[] arr) {
|
||||
//Selectionsort
|
||||
int small;
|
||||
for (int i = 0; i <arr.length - 1; i++) {
|
||||
small = i;
|
||||
for (int j = i + 1; j < arr.length; j++) {
|
||||
//if there is a smaller number on this position
|
||||
if (arr[j] < arr[small]) {
|
||||
small = j;
|
||||
//swap values
|
||||
int temp = arr[i];
|
||||
arr[i] = arr[small];
|
||||
arr[small] = temp;
|
||||
}
|
||||
}
|
||||
}
|
||||
//Writing all values of the array into a String
|
||||
String result = "";
|
||||
if(arr.length != 0) {
|
||||
result = "" + arr[0];
|
||||
if (arr.length > 1) {
|
||||
for (int i = 1; i < arr.length; i++) {
|
||||
result += "," + arr[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
package facade;
|
||||
|
||||
public class Factory {
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
package facade;
|
||||
|
||||
public class RobotFactory {
|
||||
enum RobotType {
|
||||
C3PO, R2D2
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_17" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="jdk" jdkName="17" jdkType="JavaSDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit5.8.1">
|
||||
|
@ -23,5 +23,31 @@
|
|||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit4">
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="JUnit5.8.1">
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.1/junit-jupiter-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.1/junit-jupiter-api-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.1/junit-platform-commons-1.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.1/junit-jupiter-params-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.1/junit-jupiter-engine-5.8.1.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.1/junit-platform-engine-1.8.1.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Kotlin2JvmCompilerArguments">
|
||||
<option name="jvmTarget" value="17" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
Binary file not shown.
|
@ -17,176 +17,248 @@
|
|||
# Overview
|
||||
|
||||
## Packages
|
||||
* [Domain](#domain)
|
||||
* [R2D2](#-klasse-r2d2-)
|
||||
* [R2D2Test](#-testklasse-r2d2test-)
|
||||
* [C3P0](#-klasse-c3po-)
|
||||
* [Robot](#-interface-robot-)
|
||||
* [RobotControl](#-interface-robotcontrol-)
|
||||
* [RobotControl](#-interface-robotinstructions-)
|
||||
* [Facade](#facade)
|
||||
* [Factrory](#-klasse-factory-)
|
||||
* [Infrastructure](#infratructure)
|
||||
* [Persistenz](#-klasse-persistenz-)
|
||||
* [UI](#ui)
|
||||
* ### [Domain](#domain-1)
|
||||
* [R2D2](#-classe-r2d2-)
|
||||
* [R2D2Test](#-testclasse-r2d2test-)
|
||||
* [C3P0](#-classe-c3po-)
|
||||
* [C3POTest](#-testclasse-c3potest-)
|
||||
* [RobotBasics](#-class-robotbasics-)
|
||||
* ### [Facade](#facade-1)
|
||||
* [Factrory](#-classe-factory-)
|
||||
* ### [Infrastructure](#infratructure-1)
|
||||
* [Persistenz](#-classe-persistenz-)
|
||||
* ### [robot](#robot-1)
|
||||
* ### [exceptions](#exceptions-1)
|
||||
* [RobotException](#-class-robotexception-)
|
||||
* [RobotIllegalStateException](#-class-robotillegalstateexception-)
|
||||
* [RobotMagicValueException](#-class-robotmagicvalueexception-)
|
||||
* ### [interfaces](#interfaces-1)
|
||||
* [Robot](#-interface-robot-)
|
||||
* [RobotControl](#-interface-robotcontroll-)
|
||||
* [RobotInstructions](#-interface-robotinstructions-)
|
||||
* [Sorting] vorläufig
|
||||
* ### [UI](#ui-1)
|
||||
* [UI](#-class-ui-)
|
||||
|
||||
## Sidefiles
|
||||
* [Main](#-klasse-main-)
|
||||
* [Main](#-classe-main-)
|
||||
* [makefile](#-makefile-for-Git-updates-)
|
||||
|
||||
## Domain
|
||||
<h2 align="center"> Klasse R2D2 </h2>
|
||||
<h2 align="center"> Class R2D2 </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
private int id
|
||||
private String name
|
||||
private boolean power
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
public R2D2():R2D2
|
||||
//implemented from interface Robotcontrol
|
||||
public getId():int
|
||||
public getName():String
|
||||
public triggerPowerSWitch():void
|
||||
public isPowerOn():boolean
|
||||
```
|
||||
`public R2D2():R2D2`
|
||||
|
||||
<h2 align="center"> TestKlasse R2D2Test </h2>
|
||||
<h2 align="center">
|
||||
TestClass R2D2Test
|
||||
</h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
public int id
|
||||
public String name
|
||||
public R2D2 Herbert
|
||||
```
|
||||
___
|
||||
|
||||
`public int id`
|
||||
|
||||
`public String name`
|
||||
|
||||
`public R2D2 Herbert`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
@BeforeEach
|
||||
setup():void
|
||||
|
||||
@Test
|
||||
getId():void
|
||||
getName():void
|
||||
triggerPowerSwitch():void
|
||||
iPowerOn():void
|
||||
`@BeforeEach`
|
||||
`setup():void`
|
||||
|
||||
```
|
||||
`@Test`
|
||||
|
||||
<h2 align="center"> Klasse C3PO </h2>
|
||||
`getId():void`
|
||||
|
||||
`getName():void`
|
||||
|
||||
`triggerPowerSwitch():void`
|
||||
|
||||
`iPowerOn():void`
|
||||
|
||||
|
||||
|
||||
<h2 align="center">
|
||||
Class C3PO
|
||||
</h2>
|
||||
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`//construtor`
|
||||
|
||||
<h2 align="center"> Interface Robot </h2>
|
||||
`public C3PO(): C3PO`
|
||||
|
||||
<h2 align="center">
|
||||
TestClass C3PO
|
||||
</h2>
|
||||
|
||||
### Variables:
|
||||
`public int id`
|
||||
|
||||
`public String name`
|
||||
|
||||
`public C3PO Herbert`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`@BeforeEach`
|
||||
`setup():void`
|
||||
|
||||
`@Test`
|
||||
|
||||
`getId():void`
|
||||
|
||||
`getName():void`
|
||||
|
||||
`triggerPowerSwitch():void`
|
||||
|
||||
`iPowerOn():void`
|
||||
|
||||
|
||||
<h2 align="center"> Interface RobotControl </h2>
|
||||
|
||||
<h2 align="center">
|
||||
Class RobotBasics
|
||||
</h2>
|
||||
|
||||
|
||||
### Variables:
|
||||
`private int id`
|
||||
|
||||
`private String name`
|
||||
|
||||
`private boolean power`
|
||||
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`public RobotBasics():RobotBasics`
|
||||
|
||||
`public getId():int`
|
||||
|
||||
<h2 align="center"> Interface RobotInstructions </h2>
|
||||
`public getName():String`
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`public triggerPowerSwitch():void`
|
||||
|
||||
`public ìsPowerOn():boolean`
|
||||
|
||||
`public speak():String`
|
||||
|
||||
`public think():int[]`
|
||||
|
||||
## facade
|
||||
|
||||
<h2 align="center"> Klasse Factory </h2>
|
||||
<h2 align="center"> Class Factory </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
|
||||
## Infrastructure
|
||||
|
||||
<h2 align="center"> Klasse Persistenz </h2>
|
||||
<h2 align="center"> Class Persistenz </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
|
||||
## robot
|
||||
|
||||
### exceptions
|
||||
|
||||
<h2 align="center">
|
||||
Class RobotException
|
||||
</h2>
|
||||
|
||||
#### Methods:
|
||||
`public RobotException():Exception`
|
||||
|
||||
<h2 align="center"> Class RobotIllegalStateException </h2>
|
||||
|
||||
#### Methods:
|
||||
`public RobotIllegalStateException():RobotException`
|
||||
|
||||
<h2 align="center"> Class RobotMagicValueException </h2>
|
||||
|
||||
#### Methods:
|
||||
`public RobotMagicValueException():RobotException`
|
||||
|
||||
### interfaces
|
||||
|
||||
<h2 align="center">
|
||||
Interface Robot </h2>
|
||||
|
||||
#### Methods:
|
||||
`--not set yet--`
|
||||
|
||||
|
||||
|
||||
<h2 align="center">
|
||||
Interface RobotControl
|
||||
</h2>
|
||||
|
||||
### Methods:
|
||||
`--not set yet--`
|
||||
|
||||
<h2 align="center">
|
||||
Interface RobotInstructions </h2>
|
||||
|
||||
### Methods:
|
||||
`--not set yet--`
|
||||
|
||||
|
||||
## UI
|
||||
|
||||
<h2 align="center"> Klasse UI </h2>
|
||||
<h2 align="center"> Class UI </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
|
||||
<h2 align="center"> Klasse Main </h2>
|
||||
|
||||
|
||||
|
||||
<h2 align="center"> Class Main </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
|
||||
<h2 align="center"> makefile for Git updates </h2>
|
||||
|
||||
### Variables:
|
||||
```
|
||||
--not set yet--
|
||||
```
|
||||
`--not set yet--`
|
||||
___
|
||||
|
||||
### Methods:
|
||||
```
|
||||
update_readme:
|
||||
update_make:
|
||||
update_all:
|
||||
```
|
||||
|
||||
`update_readme:`
|
||||
|
||||
`update_make:`
|
||||
|
||||
`update_all:`
|
||||
|
||||
|
||||
|
||||
## Aufgabe
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue