Linked list runtime error in insert recursively

后端 未结 0 1859
一整个雨季
一整个雨季 2021-01-18 15:21
Node* insertrec(int data,Node* head,Node* temp,int pos,int count)
{
    if(head==NULL)
    return head;
    if(pos==0)
    {
        Node *newnode=new Node(data);
           


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题