遞歸實現不帶頭節點的單鏈表

#include<iostream> #include <malloc.h> #include <stdlib.h> typedef int ElemType; using namespace std;  typedef struct LNode {  ElemType data;  struct LNode *next; }LinkNode; //初始化 void InitList(LinkNo
相關文章
相關標籤/搜索