雙向鏈表的插入刪除新增

鏈表節點 存放 結點值,前繼結點,後續結點 public class DoubleLink { public Long value; public DoubleLink pre; public DoubleLink next; public DoubleLink(Long value) { this.value = value; }
相關文章
相關標籤/搜索