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

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