Löschen eines Knoten in Doppelt verketteter Liste mit parameter-String-Taste?
Ich habe Probleme beim erstellen einer Methode löscht einen Knoten mit der Zeichenfolge "key" - parameter. Für mich war das ein String namens key als parameter.
So, dies ist mein Node.java
public class Node {
public Node next;
public Node prev;
public String data;
public void setData(String data) {
this. data = data;
}
public String getData() {
return this.data;
}
}
und das ist mein DoubleLinkedList.java :
public class DoubleLinkedList {
public Node head;
public Node tail;
public int size;
public DoubleLinkedList() {
this.head = head;
this.tail = tail;
this.size = 0;
}
public void addFirst(String data) {
Node newNode = new Node();
newNode.setData(data);
if (head == null && tail == null) {
head = newNode;
tail = head;
} else {
head.prev = newNode;
newNode.next = head;
head = newNode;
}
size++;
}
public void deleteFirst() {
if (head == tail) {
head = null;
tail = null;
} else {
head = head.next;
head.prev = null;
}
size--;
}
public void deleteLast() {
if (head == tail) {
head = null;
tail =null;
} else {
tail = tail.prev;
tail.next =null;
}
size--;
}
public boolean find(String key) {
Node temp = head;
while (!temp.getData().equals(key)) {
if(temp.next == null) {
return false;
}
temp = temp.next;
}
return true;
}
public void deleteByKey(Node key) {
/*CODE HERE
*/
}
public void display() {
if(head != null) {
Node temp = head;
while (temp != null) {
System.out.println(temp.getData()+ " ");
temp = temp.next;
}
} else {
System.out.println("Double LinkedList anda kosong!");
}
}
public boolean isEmpty() {
return (head == null && tail == null);
}
public void makeEmpty() {
head = null;
tail = null;
}
}
Ich möchte Sie zum löschen eines Knoten mit dem gleichen element als "Schlüssel" :
Liste (vorher): A B C D E F G
DeleteByKey(D);
Liste (Nach) : A B C E F G