摘要:
#include #include #include #include using namespace std; typedef struct Lnode { int data; Lnode *next; } Lnode,*linklist; void creat_h(linklist &L) //头插法 { linklist s; int n,tmp; ... 阅读全文
摘要:
#include #include #include #include using namespace std; typedef struct Lnode{ int data; Lnode *next; }Lnode,*linklist; void creat_h(linklist &L){//头插法 linklist s; int n,tmp; L=(linkli... 阅读全文