您好,登錄后才能下訂單哦!
#include<stdio.h>
#include<stdlib.h>
#define N 5
typedef struct node{
int data;
struct node * next;
}ElemSN;
ElemSN * Createlink(int a[],int n){
int i;
ElemSN * h=NULL, * p;
for( i=N-1;i>=0;i--) {
p=(ElemSN *)malloc(sizeof(ElemSN));
p->data=a[i];
p->next=h;
h=p;
}
return h;
}
void printlink(ElemSN * h){
ElemSN * p;
for(p=h;p;p=p->next)
printf("%d\n",p->data);
}
ElemSN * Prelink(ElemSN * h) {
ElemSN * h2=NULL, * p; //h2鏈表的頭結點
while(h){ //h為空截止,表示鏈表已經逆置
p=h; //頭結點給p
h=h->next; //頭結點后移
p->next=h2; //頭插
h2=p; //設置頭指針
}
return h2;
}
int main(void){
int a[N]={10,20,30,40,50};
ElemSN * head;
head=Createlink(a,9);
head=Prelink(head);
printlink(head);
return 0;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。