数据结构实验之链表八:Farey序列

数据结构实验之链表八:Farey序列
Time Limit: 10 ms Memory Limit: 600 KiB
Submit Statistic
Problem Description
Farey序列是一个这样的序列:其第一级序列定义为(0/1,1/1),这一序列扩展到第二级形成序列(0/1,1/2,1/1),扩展到第三极形成序列(0/1,1/3,1/2,2/3,1/1),扩展到第四级则形成序列(0/1,1/4,1/3,1/2,2/3,3/4,1/1)。以后在每一级n,如果上一级的任何两个相邻分数a/c与b/d满足(c+d)<=n,就将一个新的分数(a+b)/(c+d)插入在两个分数之间。对于给定的n值,依次输出其第n级序列所包含的每一个分数。

Input
输入一个整数n(0

#include <stdio.h>
#include <stdlib.h>
int n;
struct node
{
    int a, b;
    struct node *next;
};
struct node* create(int n)
{
    struct node *head, *p, *q, *t;
    head = (struct node*)malloc(sizeof(struct node));
    head->next = NULL;
    t = head;
        p = (struct node*)malloc(sizeof(struct node));
        p->next = NULL;
        p->a = 0;
        p->b = 1;
        t->next = p;
        t = p;
        p = (struct node*)malloc(sizeof(struct node));
        p->next = NULL;
        p->a = 1;
        p->b = 1;
        t->next = p;
        t = p;



            p = head->next;
            t = p->next;
            while(t)
            {
                if((p->b+t->b)<=n)
                {
                    q = (struct node*)malloc(sizeof(struct node));
                    q->next = NULL;
                    q->a = p->a + t->a;
                    q->b = p->b + t->b;

                    q->next = t;
                    p->next = q;
                    t = q;
                }
                else
                {
                    p = p->next;
                    t = t->next;
                }

            }

    return head;
}
void show(struct node*head)
{
    struct node *p;
    p = head->next;
    int x=0;
    while(p)
    {
        x++;
        printf("%d/%d", p->a, p->b);
        if(x%10==0)
        {
            printf("\n");
        }
        else
        {
            printf("\t");
        }
        p = p->next;
    }
    return;
}
int main()
{
    scanf("%d",&n);
    struct node *head;
    head = create(n);
    show(head);
    return 0;
}


/***************************************************
User name: jk160532姜兴友
Result: Accepted
Take time: 0ms
Take Memory: 248KB
Submit time: 2017-10-08 16:27:57
****************************************************/
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值