您好,登錄后才能下訂單哦!
#include<stdio.h>
#include<stdlib.h>
#define N 9
typedef struct node{ //聲明結(jié)構(gòu)體類型
int data;
struct node * next;
}ElemSN;
ElemSN * Createlink(int a[],int n) {
int i;
ElemSN * h=NULL,* tail, * p; // h :頭指針 tail : 尾指針 p : 指向新建的node指針
for( i=0;i<N;i++){
p=(ElemSN *)malloc(sizeof(ElemSN)); // 創(chuàng)建node
p->data =a[i];
p->next=NULL;
if(!h) // 頭指針為空,頭指針 尾指針 新建指針 3個指向同一個node的ElemSN類型的指針
h=tail=p;
else //頭指針不空
tail=tail->next=p; //新建的node給尾指針指針域,然后尾指針移動當前node
}
return h;
}
void printlink(ElemSN * h) { //打印輸出函數(shù)
ElemSN * p;
for(p=h;p;p=p->next){
printf("%d\n",p->data);
}
int main(void){
int a[N]={1,2,3,4,5,6,7,8,9};
ElemSN * head=NULL;
head=Createlink(a,9);
printlink(head);
}
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。