c语言 文件打开 读入整数,求助C语言设计大神!

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869#include #include  typedef struct node {    int data;    int counter;    struct node *next;}*LIST,*pNode; LIST InitList() {    pNode head;    head = (pNode)malloc(sizeof(struct node));    head->data = 0;    head->next = NULL;    return head;} void Insert(LIST head,int x) {    pNode newnode,p = head;    if(p->next == NULL) {        p->next = (pNode)malloc(sizeof(struct node));        p->next->data = x;        p->next->counter = 1;        p->next->next = NULL;        return;    }    while(p->next) {        if(p->next->data == x) {             p->next->counter;            return;        }        if(p->next->data > x) {            newnode = (pNode)malloc(sizeof(struct node));            newnode->data = x;            newnode->counter = 1;            newnode->next = p->next;            p->next = newnode;            return;        }        p = p->next;    }    p->next = (pNode)malloc(sizeof(struct node));    p->next->data = x;    p->next->counter = 1;    p->next->next = NULL;} void Show(LIST head) {    pNode p = head->next;    while(p) {        printf("] : %-d

",p->data,p->counter);        p = p->next;    }} int main() {    int num;    LIST head = InitList();    FILE *fin = fopen("data。

txt","rt");    if(fin == NULL) {        printf("不能打开数据文件。

");        return 1;    }    while(fscanf(fin,"%d",&num) == 1)        Insert(head,num);    fclose(fin);    Show(head);    return 0;}。

全部

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值