We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b62e8d0 commit 214c2b7Copy full SHA for 214c2b7
chapter3/Fundamental Data Structures/Summary/Circular Linked List.md
@@ -7,7 +7,7 @@
7
private E element; // reference to the element stored at this node
8
private Node<E> next; // reference to the subsequent node in the list
9
```
10
-#### C LL class variables:
+#### CLL class variables:
11
```java
12
private Node<E> tail = null; // we store tail (but not head)
13
private int size = 0; // number of nodes in the list
0 commit comments