#include
創(chuàng)新互聯(lián)公司專注于榆樹(shù)網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供榆樹(shù)營(yíng)銷(xiāo)型網(wǎng)站建設(shè),榆樹(shù)網(wǎng)站制作、榆樹(shù)網(wǎng)頁(yè)設(shè)計(jì)、榆樹(shù)網(wǎng)站官網(wǎng)定制、微信小程序定制開(kāi)發(fā)服務(wù),打造榆樹(shù)網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供榆樹(shù)網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
#include
#define N 9
typedef struct node{
int data;
struct node * next;
}ElemSN;
ElemSN * Createlink(int a[],int n){
int i;
ElemSN * h, * p;
h=p=(ElemSN *)malloc(sizeof(ElemSN));
h->next=NULL;
for( i=0;i p=p->next=(ElemSN *)malloc(sizeof(ElemSN)); p->data =a[i]; p->next=NULL; } return h; } void printlink(ElemSN * h){ ElemSN * p; for(p=h;p->next;p=p->next) printf("%2d\n",p->next->data); } int main(void){ int a[N]={1,2,3,4,5,6,7,8,9}; ElemSN * head; head=Createlink(a,9); printlink(head); }
分享標(biāo)題:帶頭結(jié)點(diǎn)的鏈表
當(dāng)前網(wǎng)址:http://weahome.cn/article/giegoo.html