數據結構之雙向鏈表、二叉樹

  /**  *  *雙向鏈表實現  *  */ public class MyLinkedList {   private Node first;//鏈表的第一個節點   private Node last;//鏈表的最後一個節點   private int size;//節點的數量          //使用到內部類  描述節點 class Node{ Node prev;//上一個節點對象
相關文章
相關標籤/搜索