C语言实现 基于队列的操作来实现杨辉三角的不断生成过程。

基于队列的操作来实现杨辉三角的不断生成过程。

(注:不要用其它的公式计算的方法或者二维数组来实现)

代码片段

#include <stdio.h>
#include <stdlib.h>

#define MAXSIZE 1000 //队列的最大长度
typedef int ElemType;
typedef struct {
    ElemType data[MAXSIZE];//队列的存储空间
    int front, rear;//队列的队头指针和队尾指针
} CyQueue;

//初始化队列
void Init_CyQueue(CyQueue *Q) {
    Q->front = Q->rear = 0;
}

//判断队列是否为空
int Empty_CyQueue(CyQueue *Q) {
    return Q->rear == Q->front;//为真,返回1 则表示队列为空
}

//数据 e 进队列
void In_CyQueue(CyQueue *Q, int e) {
    if (Q->rear == MAXSIZE) {
        return;
    }
    Q->data[Q->rear] = e;
    Q->rear += 1;
}

//数据出队列,通过将出队列数据赋值给 e
void Out_CyQueue(CyQueue *Q, int *e) {
    //出队之前,先判断队列是否为空
    if (Q->rear == Q->front) {
        return;
    }
    *e = Q->data[Q->front];
    Q->front += 1;
}

//获取队头元素的值
void Front_CyQueue(CyQueue *Q, ElemType *x) {
    if (Empty_CyQueue(Q)) {
        return;
    } else {
        *x = Q->data[Q->front];
    }
}

//杨辉三角实现函数
void yanghui(int n) {
    CyQueue Q;
    int i, s, e, k;
    //由于杨辉三角越往下,值的位数越多,为了保持输出数据的形状,杨辉三角第一行中的1需要空多个格
    for (i = 1; i <= n; i++) {
        printf("   ");
    }
    //输出 1,需要控制其所占位数
    printf("%-5d\n", 1);
    //初始化队列,同时将三角的第二行作为起始行,向下推导
    Init_CyQueue(&Q);
    In_CyQueue(&Q, 0);
    In_CyQueue(&Q, 1);
    In_CyQueue(&Q, 1);
    k = 1;
    while (k < n) {
        //每往下一行,其第一个数字都需往左移动 1 个占位
        for (i = 1; i <= n - k; i++) {
            printf("   ");
        }
        // 0 作为转行符,入队列
        In_CyQueue(&Q, 0);
        do {
            //队头元素出队列
            Out_CyQueue(&Q, &s);
            //取新的队头元素
            Front_CyQueue(&Q, &e);
            //如果所取元素非 0,则输出,否则做转行操作
            if (e) {
                printf("%-5d", e);
            } else {
                printf(" \n");
            }
            In_CyQueue(&Q, s + e);
        } while (e != 0);//一旦 e 值为 0,即做转行操作,退出循环,开始新一行的排列
        k++;
    }
    //出循环后,队列中还存有下一行的数据
    Out_CyQueue(&Q, &e);
    while (!Empty_CyQueue(&Q)) {
        Out_CyQueue(&Q, &e);
        printf("%-5d", e);
    }
}

int main() {
    printf("请输入规模:\n");
    int Number;
    scanf("%d", &Number);
    yanghui(Number);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值