双向链表的插入,删除,遍历打印

 #include <stdio.h>  #include <stdlib.h>  #include <string.h>  typedef struct Node pNode;  struct Node  {      int data;      pNode *prev, *next;  };   /* 初始化链表,尾插法 */  pNode *InitList(pNode **head, i
相关文章
相关标签/搜索