美文网首页
【数据结构】线性表-链式-单链路-头插式

【数据结构】线性表-链式-单链路-头插式

作者: jas_go | 来源:发表于2019-10-09 11:49 被阅读0次

    单链路头插式

    #include <iostream>
    using namespace std;
    
    typedef struct LNode
    {
        int data;
        LNode *next;
    }LNode, *LinkList;
    
    void CreateList1(LinkList &L)
    {
        LNode *s; int x;
        L = new LNode;
        L->next=NULL;
        cin>>x;
        while(x!=99)
        {
            s=new LNode;
            // s=(LNode*)malloc(sizeof(LNode));
            s->data=x;
            s->next=L->next;
            L->next=s;
            cin>>x;
        }
    //     return L;
    }
    
    LNode *a;
    CreateList1(a);
    
    while(a->next)
    {
        a=a->next;
        cout<<a->data<<endl;
    }
    

    相关文章

      网友评论

          本文标题:【数据结构】线性表-链式-单链路-头插式

          本文链接:https://www.haomeiwen.com/subject/bccjuctx.html