码迷,mamicode.com
首页 > 其他好文 > 详细

c数据结构 -- 使用链表实现计数

时间:2020-01-27 19:06:07      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:null   code   next   find   color   实现   lib   使用   scan   

#include <stdio.h>
#include <stdlib.h>
typedef struct _node{
    int value;
    struct _node *next;
} Node;
int main(void)
{
    Node * head = NULL;
    int num,i;
    i =0;
    do{
        scanf("%d",&num);
        if(num != -1){
            Node *p = (Node*)malloc(sizeof(Node));
            p->value = num;
            p->next = NULL;
            // find the last
            if(i != 0){
                Node *last = head;
                while(last->next){
                    last = last->next;
                }
                last->next = p;
            }else{
                head = p;
            }
            i++;
        }
    }while(num != -1);
    
    do{
        printf("数字:%d",head->value); 
        head = head->next;    
    }while(head);
    
    return 0;
}

 

c数据结构 -- 使用链表实现计数

标签:null   code   next   find   color   实现   lib   使用   scan   

原文地址:https://www.cnblogs.com/cl94/p/12236381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!