0

有人可以帮我制作一个队列程序。我想将 设置array[0]array[1]仅显示,但实际上我在array[0]. 我知道了如何对其运行添加功能,但我无法执行将从 ex 中查看的查看和删除命令。array[0] 到 array[4],当显示 array[1] 到 array[5] 并插入值。

#include <stdio.h>
#include <stdlib.h>
#define p printf
#define s scanf

int rear = 0;
int front = 0;
int *q_array = NULL;
int size = 0;

main()
{
    int num, opt;
    char cont[] = { 'y' };
    clrscr();
    p("Queue Program\n\n");
    p("Queue size: ");
    s("%d", &size);
    p("\n");

    if(size > 0)
    {
        q_array = malloc(size * sizeof(int));
        if(q_array == NULL)
        {
            p("ERROR: malloc() failed\n");
            exit(2);
        }
    }
    else
    {
        p("ERROR: size should be positive integer\n");
        exit(1);
    }

while((cont[0] == 'y') || (cont[0] == 'Y'))
{
    clrscr();
    p("Queue Program");
    p("\n\nQueue size: %d\n\n", size);
    p("MAIN MENU\n1. Add\n2. Delete\n3. View");
    p("\n\nYour choice: ");
    s("%d", &opt);
    p("\n");

    switch(opt) {
        case 1:
            if(rear==size)
            {
                p("You can't add more data");
            }
            else
            {
                p("Enter data for Queue[%d]: ", rear+1);
                s("%d", &num);
                add(num);
            }
            break;
        case 2:
            delt();
            break;
        case 3:
            view();
            break;
    }
    p("\n\nDo you want to continue? (Y\/N)");
    s("%s", &cont[0]);
}
}
add(int a)
{
    q_array[rear]=a;
    rear++;
}
delt()
{
    if(front==rear)
    {
        p("Queue Empty");
    }
    else
    {
        p("Queue[%d] = %d removed.", front, q_array[front]);
        front++;
    }
}
view()
{
    int i;
    for(i=front;i<=rear;i++)
        p("\nQueue[%d] = %d", i, q_array[i]);
}
4

1 回答 1

3
  1. 这里的一个严重问题是

    char cont[] = { 'y' };
    ...
    s("%s", &cont[0]);
    

    您只保留了一个字节,但scanf将写入至少 2 个字节,这意味着您将发生缓冲区溢出,然后整体行为是不可预测的。如果您想读取单个字符,则将其"%c"用作模式,但这里的问题是字符将在缓冲区中以供下次读取,因此您将不得不清除缓冲区。

    这样做要容易得多:

    char line[1024];
    fgets(line, sizeof line, stdin);
    if(line[strlen(line)-1] == '\n')
        line[strlen(line)-1] = 0;
    
    if(strcmp(line, "Y") == 0 || strcmp(line, "y")==0)
    

    这是一个多一点的代码,但这样更安全。

  2. 有很多队列,有fifo,lifo,根据它你选择如何构建它

  3. 在处理队列时,最好使用函数名称,例如,push因为它们在其他程序员和队列库中被广泛使用。请改用这些名称。poptop

  4. 在您的情况下,如果记住 with frontrear您应该使用 memmoveand 使用变量len来计算节点中当前的元素数。一旦你弹出一个元素,你就获得了更多元素的新空间。

另外,尝试使用更少的全局变量和更多的封装:(在我的示例中,我不关心mallocreturn NULL,我想保持简短)

#include <string.h> /* for size_t */

typefed struct {
    size_z len;
    size_z max_size;
    int    *data;
} queue;

void queue_init(queue *q, size_t max_size)
{  
    q->len      = 0; 
    q->max_size = max_size;
    q->data     = malloc(max_size * sizeof *(q->data));
    /* this is a good trick!
     * If you need to change the datatype of 'data',
     * you only need to change the definition of it.
     * This code is valid for any type */ 
}  

int push(queue *q, int data)
{  
    if(q->len == q->max_size)
        return 0; /* not enough space */ 

    q->data[q->len++] = data;
    return 1;
}

int top(queue *q, int *data)
{
    if(q->len == 0)
        return 0; /* no elements in the queue */
    *data = q->data[0];
    return 1;
}

int pop(queue *q, int *data)
{
    if(top(q, data) == 0)
        return 0;

    memmove(q->data, q->data + sizeof *(q->data), q->len--);
    return 1;
}

顺便提一句:

#define p printf
#define s scanf

就像 Daniel Fischer 说的,这很丑;不要那样做。

于 2012-09-29T15:35:54.333 回答