当前位置:   article > 正文

队列操作_第一行是一个整数吗,第二行是m个整数

第一行是一个整数吗,第二行是m个整数

输入格式

输入一共有 3 行,第一行为一个正整数 m(1≤m≤100),代表入队的元素个数。

第二行为 m 个整数,表示插入到队列中的元素。

第三行为一个整数 n(1≤n<m),表示执行出队操作的次数。
输出格式

输出一共有 2 行,第一行为执行完所有入队、出队操作后当前队列的队首元素。

第二行为最终队列的遍历输出结果,每两个整数之间一个空格,最后一个整数后面没有空格。

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

#define ERROR 0
#define OK 1

typedef struct Queue{
    int head, tail, length;
    int *data;
}Queue;

void init(Queue *q, int length) {
    q->head = 0;
    q->tail = -1;
    q->length = length;
    q->data = (int *)malloc(sizeof(int) * length);
}

int push(Queue *q, int element) {
    if(q->tail + 1 >= q->length) {
        return ERROR;
    }
    q->tail++;
    q->data[q->tail] = element;
    return OK;
}
void output(Queue *q) {
    for (int i = q->head; i <= q->tail; i++) {
        if(i != q->head) printf(" ");
        printf("%d", q->data[i]);
    }
    printf("\n");
    
}
int front(Queue *q) {
    return q->data[q->head];
}
void pop(Queue *q) {
     q->head++;
}

int empty(Queue *q) {
    return q->head > q->tail;
}

void clear(Queue *q) {
    free(q->data);
    free(q);
}

int main() {
    Queue *queue = (Queue *)malloc(sizeof(Queue));
    init(queue, 100);
    int m;
    int element[100];
    scanf("%d",&m);
    for(int i = 0; i < m; i++) {
       scanf("%d",&element[i]); 
       push(queue,element[i]);
    }
    int n;
    scanf("%d",&n);
    
    for(int i = 0; i < n; i++) {
        if(!empty(queue)){
            pop(queue);  
        }
    }
    printf("%d\n",front(queue));
    output(queue);
    return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/960727
推荐阅读
相关标签
  

闽ICP备14008679号