mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 01:35:16 +08:00
Fix typo (#3167)
This commit is contained in:
@ -19,7 +19,7 @@ public class CircleLinkedList<E> {
|
||||
private Node<E> head = null;
|
||||
private Node<E> tail = null; // keeping a tail pointer to keep track of the end of list
|
||||
|
||||
// constructer for class.. here we will make a dummy node for circly linked list implementation
|
||||
// constructor for class.. here we will make a dummy node for circly linked list implementation
|
||||
// with reduced error catching as our list will never be empty;
|
||||
public CircleLinkedList() {
|
||||
// creation of the dummy node
|
||||
|
Reference in New Issue
Block a user