#include
创新互联建站是一家朝气蓬勃的网站建设公司。公司专注于为企业提供信息化建设解决方案。从事网站开发,网站制作,网站设计,网站模板,微信公众号开发,软件开发,小程序开发,十多年建站对宴会酒店设计等多个方面,拥有多年的网站运维经验。
#include
#define N 9
typedef struct node{ //声明结构体类型
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 p=(ElemSN *)malloc(sizeof(ElemSN)); // 创建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) { //打印输出函数 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); }
当前文章:正向创建链表
标题网址:http://chengdu.cdxwcx.cn/article/ppogsp.html