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

  • Post author:
  • Post category:其他

#include <iostream>
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*)malloc(sizeof(LNode));
        s->data=a[i];
        r->next=s;
        r=r->next;
    }
    r->next=NULL;
    for(i=0;i<n;++i){
        cout<<a[i];
    }
    return 1;
}
int main()
{
    LNode *C;
    int n=5;
    int a[5]={1,2,3,4,5};
    createlistR(C,a,n);

    return 0;
}



版权声明:本文为weixin_48797994原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。