單向鏈表和雙向鏈表實現

/*單向鏈表*/  typedef struct MySList  {      int data;      struct MySList* next;  }ListSNode;  void  SDList()  {      int i = 0;      ListSNode *head = new ListSNode;//VS2015 C++環境下,若是是用C寫的話改成 ListNode *
相關文章
相關標籤/搜索