Can I use java.util.LinkedList to construct a circular/cyclic linked list?
问题 I would like to create a circular/cyclic linked list where the tail of the list would point back to the head of the list. So can I use java.util.LinkedList and modify the tail node after creation of the list to make it circular/cyclic? If so, can you show me some code on how that would happen? If I can't use java.util.LinkedList , how should I create my own circular/cyclic linked list implementation? Can you show me the skeletons of how this implementation would look? Let me know if you need