程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C實現單鏈表直接選擇排序

C實現單鏈表直接選擇排序

編輯:C++入門知識

[cpp] 
/****************************
單鏈表直接選擇排序
*******************************/ 
#include<stdio.h> 
#include<stdlib.h> 
struct node 

    int num; 
    struct node *next; 
}; 
struct node *head=NULL; 
cre_list() //初始化結點 

    head = (struct node *)malloc(sizeof(struct node)); 
    head->num=0; 
    head->next = NULL; 

add_node(int num) //插入結點 

    struct node *ptr = (struct node *)malloc(sizeof(struct node)); 
    ptr->num = num; 
    ptr->next = head->next; 
    head->next=ptr; 

 
display_node() //遍歷鏈表 

    struct node *p = head->next; 
    do 
    { 
        printf("%d\t",p->num); 
        p = p->next; 
    }while(p != NULL); 
    printf("\n"); 

 
select_insert() 

    int min=0; 
    int tmp=0; 
    struct node *p,*q,*M; 
    p=q=M=head; 
    while(p->next!=NULL) 
    { 
        M=q=p->next; 
        min=q->num; 
         
        while(q!=NULL) 
        { 
            if(q->num < min) 
            { 
                M=q; 
                min=q->num; 
            } 
            q=q->next; 
        } 
        if(p->next!=M) 
        { 
            tmp=p->next->num; 
            p->next->num=M->num; 
            M->num=tmp; 
        } 
        p=p->next; 
    } 

     
int main() 

    int i; 
    int a[10]={23,41,77,12,98,25,6,97,55,38}; 
    cre_list(); 
    for(i=0;i<10;i++) 
    { 
        add_node(a[i]); 
    } 
    display_node(); 
    select_insert(); 
    display_node(); 
     
    return 0; 

作者:ccj2020

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved