Merge pull request #8269 from radhe-sravan/master

Circular linked list Java implementation
This commit is contained in:
Jonathan Cook 2019-11-30 21:28:45 +01:00 committed by GitHub
commit f21eb19591
2 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.list;
package com.baeldung.circularlinkedlist;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -49,13 +49,11 @@ public class CircularLinkedList {
if (currentNode.value == valueToDelete) {
head = head.nextNode;
tail.nextNode = head;
currentNode = null;
} else {
do {
Node nextNode = currentNode.nextNode;
if (nextNode.value == valueToDelete) {
currentNode.nextNode = nextNode.nextNode;
nextNode = null;
break;
}
currentNode = currentNode.nextNode;

View File

@ -1,4 +1,4 @@
package com.baeldung.list;
package com.baeldung.circularlinkedlist;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;