Compare commits

...

24 Commits

Author SHA1 Message Date
hertero 5459db1664 Schreiben weiterer Testfälle 3 years ago
hertero 46b78a7bb9 Anpassung der getInstance-Methoden 3 years ago
hertero 5ceefcc035 Anpassung add-/remove-/contains-/add(i,e)-Methoden 3 years ago
hertero c4a60abf38 Anpassung der AbstractSimpleList-Klasse 3 years ago
hertero c0fe9ee22a Testklasse getInstance hinzugefügt 3 years ago
hertero 72aba9f855 Schreiben weiterer Testfälle 3 years ago
hertero 7fb92d1022 Testklasse SimpleListTest90 erstellt 3 years ago
hertero e86e38abc9 test-Package entfernt 3 years ago
hertero efa4f262f2 Anpassung der Klasse SimpleLinkedListTest 3 years ago
hertero ba9bc237be Testklasse SimpleListTest90 erstellt 3 years ago
hertero 8a33edcac2 add(i,e)-Methode implementiert 3 years ago
hertero 2580a3214a get(i)-/set(i,e)-/remove(i)-Methoden implementiert 3 years ago
hertero 2db0c7e202 getIndex-Hilfsmethode implementiert 3 years ago
hertero 9d4d517b09 forAll-Methode implementiert 3 years ago
hertero e6ac28d03a contains-Methode implementiert 3 years ago
hertero 132a800609 remove-Methode implementiert 3 years ago
hertero e541c65a1e add-Methode implementiert 3 years ago
hertero c70228dacf Anlegen des Knoten firstNode 3 years ago
hertero db2109ffa4 Formatierung und Kommentierung 3 years ago
hertero c3684c22b7 Neue abstrakte Klasse AbstractSimpleList implementiert 3 years ago
hertero 2f88c085cf Neues ISimpleList Interface implementiert 3 years ago
hertero 817dd5509f Neues ICommand Interface erstellt 3 years ago
hertero baf939e5ca testat document commit 3 years ago
hertero c42949b3dd initial project commit 3 years ago
  1. 11
      SimpleLinkedList/.classpath
  2. 17
      SimpleLinkedList/.project
  3. BIN
      SimpleLinkedList/2017-WS Testat-90 complete.pdf
  4. 25
      SimpleLinkedList/src/solution/AbstractSimpleList.java
  5. 6
      SimpleLinkedList/src/solution/ICommand.java
  6. 54
      SimpleLinkedList/src/solution/ISimpleList.java
  7. 36
      SimpleLinkedList/src/solution/Node.java
  8. 152
      SimpleLinkedList/src/solution/SimpleLinkedList.java
  9. 9
      SimpleLinkedList/src/solution/SimpleLinkedListTest.java
  10. 137
      SimpleLinkedList/src/solution/SimpleListTest90.java

11
SimpleLinkedList/.classpath

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
<classpathentry kind="output" path="bin"/>
</classpath>

17
SimpleLinkedList/.project

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SimpleLinkedList</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

BIN
SimpleLinkedList/2017-WS Testat-90 complete.pdf

Binary file not shown.

25
SimpleLinkedList/src/solution/AbstractSimpleList.java

@ -0,0 +1,25 @@
package solution;
import java.util.Collection;
public abstract class AbstractSimpleList<E> implements ISimpleList<E> {
@Override
public boolean add(Collection<E> c) {
boolean temp = true;
for (E e : c) {
temp = temp && add(e);
}
return temp;
}
@Override
public void forAll(ICommand<E> command) {
if (command != null) {
for (int i = 0; i < size(); i++) {
command.execute(get(i));
}
}
}
}

6
SimpleLinkedList/src/solution/ICommand.java

@ -0,0 +1,6 @@
package solution;
public interface ICommand<E> {
void execute(E e);
}

54
SimpleLinkedList/src/solution/ISimpleList.java

@ -0,0 +1,54 @@
package solution;
import java.util.Collection;
import java.util.Comparator;
public interface ISimpleList<E> {
// Anzahl der Elemente in der Liste
int size();
// fügt das Element e am Ende der Liste ein, sofern es ungleich null ist:
// Liefert true, falls ein Element eingefügt wurde (false sonst)
boolean add(E e);
// fügt alle Elemente der Collection c ein (sofern diese nicht null sind).
boolean add(Collection<E> c);
// prüft, ob das Objekt o in der Liste enthalten ist (o == null führt zur
// Rückgabe false)
boolean contains(Object o);
// entfernt das Objekt o aus der Liste // true: Ein Element wurde entfernt,
// false sonst
boolean remove(Object o);
// Durchläuft alle Elemente der Liste und wendet command.execute auf jedes
// Element an
void forAll(ICommand<E> command);
// fügt das Element an der Position i ein, sofern es nicht null ist und 0 <= i
// <= Anzahl an Elementen gilt. Rückgabe true, false sonst.
default void add(int i, E e) throws IndexOutOfBoundsException {
}
// Liefert das Element, das an Position i steht, null falls i keinen gültigen
// Index darstellt.
default E get(int i) throws IndexOutOfBoundsException {
return null;
}
// Ersetzt das i-te Element durch e, sofern es vorhanden ist (Index gültig)
default void set(int i, E e) throws IndexOutOfBoundsException {
}
// Löscht das i-te Element, sofern der Index gültig ist. Rückgabe true, false
// sonst.
default boolean remove(int i) {
return false;
}
// Sortiermethode mittels Comparator
default void sort(Comparator<E> comparator) {
}
}

36
SimpleLinkedList/src/solution/Node.java

@ -0,0 +1,36 @@
package solution;
public class Node <E>{
private Node<E> predecessor; // Vorgänger
private Node<E> successor; // Nachfolger
private E payload; // Nutzlast
//Konstruktor mit Parameter payload
public Node(E payload) {
this.payload = payload;
}
public Node<E> getPredecessor() {
return predecessor;
}
public void setPredecessor(Node<E> predecessor) {
this.predecessor = predecessor;
}
public Node<E> getSuccessor() {
return successor;
}
public void setSuccessor(Node<E> e) {
this.successor = e;
}
public E getPayload() {
return payload;
}
public void setPayload(E payload) {
this.payload = payload;
}
}

152
SimpleLinkedList/src/solution/SimpleLinkedList.java

@ -0,0 +1,152 @@
package solution;
public class SimpleLinkedList<E> extends AbstractSimpleList<E> {
Node<E> firstNode;
int size;
public SimpleLinkedList() {
firstNode = null;
size = 0;
}
@Override
public int size() {
return size;
}
@Override
public boolean add(E e) {
if (e == null) {
return false;
} else if (firstNode == null) {
firstNode = new Node<E>(e);
} else {
Node<E> currentNode = firstNode;
while (currentNode != null) {
if (currentNode.getSuccessor() == null) {
break;
}
currentNode = currentNode.getSuccessor();
}
Node<E> newNode = new Node<E>(e);
currentNode.setSuccessor(newNode);
newNode.setPredecessor(currentNode);
}
size++;
return true;
}
@Override
public boolean remove(Object o) {
if (o == null) {
return false;
}
Node<E> currentNode = firstNode;
while (currentNode != null) {
if (o.equals(currentNode.getPayload())) {
currentNode.setPayload(null);
size--;
return true;
}
if (currentNode.getSuccessor() == null) {
break;
}
currentNode = currentNode.getSuccessor();
}
return false;
}
@Override
public boolean contains(Object o) {
if (o == null) {
return false;
}
Node<E> currentNode = firstNode;
while (currentNode != null) {
if (o.equals(currentNode.getPayload())) {
return true;
}
currentNode = currentNode.getSuccessor();
}
return false;
}
@Override
public void forAll(ICommand<E> command) {
if (command != null) {
Node<E> currentNode = firstNode;
while (currentNode != null) {
command.execute(currentNode.getPayload());
currentNode = currentNode.getSuccessor();
}
}
}
private Node<E> getIndex(int i) {
if (i < 0 || size <= i) {
return null;
}
Node<E> currentNode = firstNode;
int currentIndex = 0;
while (currentNode != null) {
if (currentIndex >= i) {
if (currentNode.getPayload() != null) {
return currentNode;
}
}
currentNode = currentNode.getSuccessor();
currentIndex++;
}
return null;
}
public E get(int i) throws IndexOutOfBoundsException {
return getIndex(i).getPayload();
}
public void set(int i, E e) throws IndexOutOfBoundsException {
getIndex(i).setPayload(e);
}
public boolean remove(int i) throws IndexOutOfBoundsException {
if (getIndex(i) != null) {
getIndex(i).setPayload(null);
size--;
return true;
}
return false;
}
public void add(int i, E e) throws IndexOutOfBoundsException {
if (size == 0) {
if (i != 0) {
throw new IndexOutOfBoundsException("Index " + i + " is out of bounds!");
}
set(0, e);
} else if (i == size) {
add(e);
} else if (size > 0 && i < size) {
Node<E> newNode = new Node<>(e);// node3
Node<E> tempNode = getIndex(i); // node2
Node<E> preTempNode = getIndex(i).getPredecessor(); // node1
preTempNode.setSuccessor(newNode);
newNode.setPredecessor(preTempNode);
newNode.setSuccessor(tempNode);
tempNode.setPredecessor(newNode);
}
}
}

9
SimpleLinkedList/src/solution/SimpleLinkedListTest.java

@ -0,0 +1,9 @@
package solution;
public class SimpleLinkedListTest extends SimpleListTest90{
@Override
protected ISimpleList<String> getInstance1() {
return new SimpleLinkedList<>();
}
}

137
SimpleLinkedList/src/solution/SimpleListTest90.java

@ -0,0 +1,137 @@
package solution;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
public abstract class SimpleListTest90 {
ISimpleList<String> list;
protected String nodeNull = null;
protected String node0 = "0";
protected String node1 = "1";
protected String node2 = "2";
protected String node3 = "3";
protected String node4 = "4";
protected abstract ISimpleList<String> getInstance1();
protected void add2() {
list.add(node1);
list.add(node2);
}
@BeforeAll
static void setUpBeforeClass() throws Exception {
}
@BeforeEach
void setUp() throws Exception {
list = getInstance1();
}
@Test
public void testAdd1() {
boolean actual = list.add(node1);
assertEquals(true, actual);
}
@Test
public void testAdd2() {
add2();
list.remove(node2);
list.add(node3);
list.add(node4);
String actual = list.get(2);
assertEquals(node3, actual);
}
@Test
public void testRemoveObject() {
list.add(node1);
list.add(node2);
list.add(node3);
boolean actual = list.remove(node2);
assertEquals(true, actual);
}
@Test
public void testRemoveSize() {
add2();
list.remove(1);
int actual = list.size();
assertEquals(1, actual);
}
@Test
public void testContainsTrue() {
add2();
boolean actual = list.contains(node1);
assertEquals(true, actual);
}
@Test
public void testContainsFalse() {
add2();
boolean actual = list.contains(node3);
assertEquals(false, actual);
}
@Test
public void testForAll1() {
list.forAll(null);
assertEquals(true, true);
}
@Test
public void getNodeIndex() {
add2();
String actual = list.get(1);
assertEquals(node2, actual);
}
@Test
public void setNodeIndex() {
add2();
list.set(1, node3);
String actual = list.get(1);
assertEquals(node3, actual);
}
@Test
public void testRemoveIndex() {
add2();
list.add(node3);
boolean actual = list.remove(1);
assertEquals(true, actual);
}
@Test
public void testAddIndexException() {
try {
list.add(-1, node1);
list.get(0);
} catch (Exception e) {
assertEquals(true, e instanceof IndexOutOfBoundsException);
}
}
@Test
public void testAddIndexSameSize() {
add2();
list.add(2, node4);
String actual = list.get(2);
assertEquals(node4, actual);
}
@Test
public void testAddIndexNewNode() {
add2();
list.add(1, node3);
String actual = list.get(1);
assertEquals(node3, actual);
}
}
Loading…
Cancel
Save