fix bugs in AES.java(#765)

This commit is contained in:
yanglbme
2019-05-22 09:22:52 +08:00
parent 3b70b8c321
commit bdb9acfbff
3 changed files with 7 additions and 280 deletions

View File

@ -52,7 +52,7 @@ public class CircleLinkedList<E> {
before = before.next;
}
E saved = iterator.value;
// assigning the next referance to the the element following the element we want to remove... the last element will be assigned to the head.
// assigning the next reference to the the element following the element we want to remove... the last element will be assigned to the head.
before.next = iterator.next;
// scrubbing
iterator.next = null;