您好,登錄后才能下訂單哦!
#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* SelectSont(ElemSN*h) {
ElemSN*p,*q,*Pm,*Qm,*h2; //pq指針聯動,Pm最大值指針,Qm最大指針的前一結點 ,h2頭結點
h2=NULL;
while(h){ //結束條件是頭指針為空
for(Pm=q=h,p=h->next;p;q=p,p=p->next){
if(Pm->data>p->data){
Pm=p;
Qm=q;
}
} //for結束,Pm指的是最大值結點
if(Pm-h)
Qm->next=Pm->next; //不是頭指針
else
h=h->next; //是頭指針
Pm->next=h2; //最大值放在頭結點
h2=Pm; //設置頭指針
}
return h2;
}
int main(void){
int a[N]={10,2,80,5,4};
ElemSN * head;
head=Createlink(a,9);
head=SelectSont(head);
printlink(head);
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。