兴奋月光

文章
6
资源
0
加入时间
2年10月17天

尾插法建立单链表并输出单链表。

在这里插入代码片#include using namespace std;typedef struct LNode{int data;struct LNode *next;}LNode;int createlistR(LNode *&C,int a[],int n){LNode s,r;int i;C=(LNode)malloc(sizeof(LNode));C->next=NULL;r=C;for(i=0;i<n;++i){s=(LNode)mall