鱼C论坛

 找回密码
 立即注册
查看: 4909|回复: 6

[已解决]c队列c语言实现救救孩子

[复制链接]
发表于 2021-4-18 16:54:42 | 显示全部楼层 |阅读模式
55鱼币
求求大佬帮我看看错在哪里


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

#define TRUE  1
#define OVERFLOW -2
#define FALSE 0
#define MAXSIZE 10
typedef struct Queue{

        int *base;        // 队列首地址
        int front;      
        int rear;
      

}Queue,*LQueue;//这是我定义的队列结构体

typedef struct Node
{
        int data;  
        struct Node* next;
}Node,*LNode;//节点的结构体

int InitQueue(LQueue Q){
          Q->base=(int*)malloc(sizeof(int)*MAXSIZE);
          Q->front = Q->rear = NULL;
      
         return TRUE;
}
int Fullor(LQueue Q)
{
                 Q->front =Q->rear +1;
                 return(FALSE);
}
int InQueue(LQueue &Q,int &elem)
{
        if ((Q->rear + 1) % MAXSIZE == (Q->front))
                return FALSE;
        Q->base[Q->rear] = elem;
        Q->rear = (Q->rear + 1) % MAXSIZE;
        return TRUE;
}

int OutQueue(LQueue &Q,int &elem)
{
        if (Q->front == Q->rear)
                return FALSE;
        elem= Q->base[Q->front];
        Q->front = (Q->front + 1) % MAXSIZE;
        return TRUE;
}

int printQueue(LQueue Q)
{
        printf("the queue is:\n");
        for(int i =Q->front;i<=Q->rear;++i)
        {
                printf("%d",Q->base[i]);
        }
        return TRUE;
}
int main(void)
{
         LQueue L;
         InitQueue(L);
         int i;
         int elem;
         int h;
         printf("input is~:");
         for(i=0;i<10;i++)
         {
                elem=i+25;
                InQueue(L,elem);
                return TRUE;
         }
         printQueue(L);
         printf("请问你要舍弃多少个数字\n");
         scanf("%d", &h);
         while (h != 0)
         {
                OutQueue(L, elem);
                h--;
         }
         printQueue(L);
         return TRUE;
}
最佳答案
2021-4-18 16:54:43
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define TRUE  1
#define OVERFLOW -2
#define FALSE 0
#define MAXSIZE 10
typedef struct Queue{

        int *base;        // 队列首地址
        int front;       
        int rear;
       

}Queue,*LQueue;//这是我定义的队列结构体

typedef struct Node
{
        int data;  
        struct Node* next;
}Node,*LNode;//节点的结构体

int InitQueue(LQueue &Q){ // 因为要初始化Q的内存空间,所以传址
        // 先初始化Q
        Q = (LQueue)malloc(sizeof(Queue));
          Q->base=(int*)malloc(sizeof(int)*MAXSIZE);
          Q->front = Q->rear = NULL;
       
         return TRUE;
}
int Fullor(LQueue Q)
{
                 Q->front =Q->rear +1;
                 return(FALSE);
}
int InQueue(LQueue &Q,int &elem)
{
        if ((Q->rear + 1) % MAXSIZE == (Q->front))
                return FALSE;
        Q->base[Q->rear] = elem;
        Q->rear = (Q->rear + 1) % MAXSIZE;
        return TRUE;
}

int OutQueue(LQueue &Q,int &elem)
{
        if (Q->front == Q->rear)
                return FALSE;
        elem= Q->base[Q->front];
        Q->front = (Q->front + 1) % MAXSIZE;
        return TRUE;
}

int printQueue(LQueue Q)
{
        printf("the queue is:\n");
        for(int i =Q->front;i<=Q->rear;++i)
        {
                printf("%d",Q->base[i]);
        }
        return TRUE;
}
int main(void)
{
         LQueue L; // 指针变量,要初始化内存空间
         InitQueue(L);
         int i;
         int elem;
         int h;
         printf("input is~:");
         for(i=0;i<10;i++)
         {
                elem=i+25;
                InQueue(L,elem);
                return TRUE;
         }
         printQueue(L);
         printf("请问你要舍弃多少个数字\n");
         scanf("%d", &h);
         while (h != 0)
         {
                OutQueue(L, elem);
                h--;
         }
         printQueue(L);
         return TRUE;
}

最佳答案

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-18 16:54:43 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define TRUE  1
#define OVERFLOW -2
#define FALSE 0
#define MAXSIZE 10
typedef struct Queue{

        int *base;        // 队列首地址
        int front;       
        int rear;
       

}Queue,*LQueue;//这是我定义的队列结构体

typedef struct Node
{
        int data;  
        struct Node* next;
}Node,*LNode;//节点的结构体

int InitQueue(LQueue &Q){ // 因为要初始化Q的内存空间,所以传址
        // 先初始化Q
        Q = (LQueue)malloc(sizeof(Queue));
          Q->base=(int*)malloc(sizeof(int)*MAXSIZE);
          Q->front = Q->rear = NULL;
       
         return TRUE;
}
int Fullor(LQueue Q)
{
                 Q->front =Q->rear +1;
                 return(FALSE);
}
int InQueue(LQueue &Q,int &elem)
{
        if ((Q->rear + 1) % MAXSIZE == (Q->front))
                return FALSE;
        Q->base[Q->rear] = elem;
        Q->rear = (Q->rear + 1) % MAXSIZE;
        return TRUE;
}

int OutQueue(LQueue &Q,int &elem)
{
        if (Q->front == Q->rear)
                return FALSE;
        elem= Q->base[Q->front];
        Q->front = (Q->front + 1) % MAXSIZE;
        return TRUE;
}

int printQueue(LQueue Q)
{
        printf("the queue is:\n");
        for(int i =Q->front;i<=Q->rear;++i)
        {
                printf("%d",Q->base[i]);
        }
        return TRUE;
}
int main(void)
{
         LQueue L; // 指针变量,要初始化内存空间
         InitQueue(L);
         int i;
         int elem;
         int h;
         printf("input is~:");
         for(i=0;i<10;i++)
         {
                elem=i+25;
                InQueue(L,elem);
                return TRUE;
         }
         printQueue(L);
         printf("请问你要舍弃多少个数字\n");
         scanf("%d", &h);
         while (h != 0)
         {
                OutQueue(L, elem);
                h--;
         }
         printQueue(L);
         return TRUE;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-4-18 19:43:25 | 显示全部楼层

谢谢呀可是运行结果只到input is~就没了
可以再帮我解答一下咩
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-18 20:11:27 | 显示全部楼层
YinLee 发表于 2021-4-18 19:43
谢谢呀可是运行结果只到input is~就没了
可以再帮我解答一下咩

我总不可能帮你把代码全敲完吧。自己不动手?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-4-18 20:34:23 | 显示全部楼层
ba21 发表于 2021-4-18 20:11
我总不可能帮你把代码全敲完吧。自己不动手?

这就是我敲完的代码自己完全看不出来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-4-18 20:35:20 | 显示全部楼层
ba21 发表于 2021-4-18 20:11
我总不可能帮你把代码全敲完吧。自己不动手?

还是谢谢你呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-18 21:25:50 | 显示全部楼层

这注释了几处,自己看看吧。这代码没发继续看下去。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define TRUE  1
#define OVERFLOW -2
#define FALSE 0
#define MAXSIZE 10
typedef struct Queue{

        int *base;        // 队列首地址
        int front;       
        int rear;
       

}Queue,*LQueue;//这是我定义的队列结构体

typedef struct Node
{
        int data;  
        struct Node* next;
}Node,*LNode;//节点的结构体

int InitQueue(LQueue &Q){ // 因为要初始化Q的内存空间,所以传址
        // 先初始化Q
        Q = (LQueue)malloc(sizeof(Queue));
          Q->base=(int*)malloc(sizeof(int)*MAXSIZE);
          Q->front =Q->rear=NULL;
                          

       
         return TRUE;
}
int Fullor(LQueue Q)
{
                 Q->front =Q->rear +1;
                 return(FALSE);
}
int InQueue(LQueue Q,int elem) // 这里何必要加&
{
        if ((Q->rear + 1) % MAXSIZE == (Q->front)) // Q->rear InitQueue不是=NULL吗?
                return FALSE;
        Q->base[Q->rear] = elem;
        Q->rear = (Q->rear + 1) % MAXSIZE;
        return TRUE;
}

int OutQueue(LQueue &Q,int &elem)
{
        if (Q->front == Q->rear)
                return FALSE;
        elem= Q->base[Q->front];
        Q->front = (Q->front + 1) % MAXSIZE;
        return TRUE;
}

int printQueue(LQueue Q)
{
        printf("the queue is:\n");
        for(int i =Q->front;i<=Q->rear;++i)
        {
                printf("%d",Q->base[i]);
        }
        return TRUE;
}
int main(void)
{
         LQueue L; // 指针变量,要初始化内存空间
         InitQueue(L);
         int i;
         int elem;
         int h;
         printf("input is~:");
         for(i=0;i<10;i++)
         {
                elem=i+25;
                InQueue(L,elem);
                // return TRUE; // 退出??????
         }
         printQueue(L);
       //  printf("请问你要舍弃多少个数字\n");
        // scanf("%d", &h);
        // while (h != 0)
        // {
          //      OutQueue(L, elem);
         //       h--;
       //  }
       //  printQueue(L);
         return TRUE;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 08:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表