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

Posted cl94

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c数据结构 -- 使用链表实现计数相关的知识,希望对你有一定的参考价值。

#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数据结构 -- 使用链表实现计数的主要内容,如果未能解决你的问题,请参考以下文章

最好懂的C语言实现无头单向链表-新手向

最好懂的C语言实现无头单向链表-新手向

计数排序

C语言教程双向链表学习总结和C语言代码实现!值得学习~

单向链表-C语音实现

链表(list)的实现(c语言)