程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 鏈表(建立+插入+刪除+輸出)

鏈表(建立+插入+刪除+輸出)

編輯:C++入門知識

[cpp]
#include <stdio.h>  
#include <stdlib.h>  
struct node 

    int date; 
    node *next; 
}s[100]; 
int main() 

    int n,i,t; 
    while(~scanf("%d",&n)) 
    { 
        node *root,*p; 
        root = (node *)malloc(sizeof(node)); 
        root -> next = NULL; 
        p = root; 
 
        //建立  
        for(i = 0 ; i < n ; i ++) 
        { 
            node *k = (node *)malloc(sizeof(node)); 
            scanf("%d",&t); 
            k -> date = t; 
            k -> next = NULL; 
            p -> next = k; 
            p = p -> next; 
        } 
 
        //刪除  
        int delete_num; 
        printf("輸入刪除的數據:"); 
        scanf("%d",&delete_num); 
        p = root; 
        while(p -> next != NULL) 
        { 
            if(p -> next -> date == delete_num) 
            { 
                p -> next = p -> next -> next; 
                break; 
            } 
            p = p -> next; 
        } 
 
 
        //插入  
        //在有序數列中插入數據  
        int insert_num; 
        printf("插入的數據:"); 
        scanf("%d",&insert_num); 
        p = root; 
        while(p -> next != NULL) 
        { 
            if(p -> next -> date >= insert_num) 
            { 
                node *k = (node *)malloc(sizeof(node)); 
                k -> date = insert_num; 
                k -> next = p -> next; 
                p -> next = k; 
                break; 
            } 
            p = p -> next; 
        } 
 
        //輸出  
        p = root; 
        while(p -> next != NULL) 
        { 
            printf("%d ",p -> next ->date); 
            p = p -> next; 
        } 
    } 
    return 0; 

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