我已經刪除了java中的循環鏈表中的節點。在開始,中間和結束節點中刪除一個節點。如何來解決這個問題 public class Node {
int element;
Node next;
}
現在有另一個類加載和顯示的所有方法都是在循環列表正常工作,但我的remove方法是有問題的 public class MyLinkedList {
我如何將我的添加和刪除方法從正常鏈接轉換爲循環鏈接列表。使用這段代碼,我想我需要一個尾部引用等等? public void add(int index, Object item)
throws ListIndexOutOfBoundsException {
//our index needs to go in along with our stuff in item