C語言實現頭插法


上一篇的頭插法書寫有誤,在此更正

//create by yu

#include "stdio.h"
#include "stdlib.h"

typedef struct node{
    int element;
    struct node *next;
}node,*linklist;


linklist insertfromhead(int number){
    linklist head=(linklist)malloc(sizeof(node));
    head->next=NULL;
    for(int i=0;i<number;i++){
        linklist n=(linklist)malloc(sizeof(node));
        printf("please input the %dth number",(i+1));
        scanf("%d",&(n->element));
        n->next=head->next;
        head->next=n;
    }

    return head;
}

void display(linklist head){
    linklist temp=head;
    while(temp->next){
        temp=temp->next;
        printf("%d\n",temp->element);
    }
}
int main(){
    linklist head=insertfromhead(5);
    display(head);
    return 0;
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM