尾插法建立单链表并输出单链表。
在这里插入代码片#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