數據結構——單鏈表(環)

一、環 標題   二、創建環 //建立環 public void createLoop(){ Entry cur = this.head; while(cur.next != null){ cur = cur.next; } Entry cur2 = this.head.next.next.next;
相關文章
相關標籤/搜索