【每日算法】AB7 用链表实现队列

简介: 【每日算法】AB7 用链表实现队列

代码

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

struct node {
    struct node* next;
    int data;
} node;

struct queue {
    int size;
    struct node* front;
    struct node* rear;
} queue;

struct queue* init() {
    struct queue* q;
    q = (struct queue*)malloc(sizeof(struct queue));
    q->front = NULL;
    q->rear = NULL;
    q->size = 0;
    return q;
}

void push(struct queue* q, int a) {
    struct node* n = (struct node*)malloc(sizeof(node));
    n->data = a;
    if (q->size == 0) {
        q->front = n;
        q->rear = n;
        n->next = NULL;
    } else {
        q->rear->next = n;
        n->next = NULL;
        q->rear = n;
    }
    q->size ++;
}

int pop(struct queue* q) {
    int res;
    if (q->size == 1) {
        res = q->front->data;
        struct node* tmp = q->front;
        free(tmp);
        q->front = NULL;
        q->rear = NULL;
    } else {
        res = q->front->data;
        struct node* tmp = q->front;
        q->front = tmp->next;
        free(tmp);
    }
    q->size --;
    return res;
}

int main() {
    int cnt;
    scanf("%d", &cnt);
    char mode[6];
    int data;
    struct queue* q = init();
    for (int i = 0; i < cnt; i ++) {
        scanf("%s", mode);
        if (strcmp(mode, "push") == 0) {
            scanf("%d", &data);
            push(q, data);
        } else if (strcmp(mode, "pop") == 0) {
            if (q->size == 0) {
                printf("error\n");
            } else {
                int res = pop(q);
                printf("%d\n", res);
            }
        } else if (strcmp(mode, "front") == 0) {
            if (q->size == 0) {
                printf("error\n");
            } else {
                printf("%d\n", q->front->data);
            }
        }
    }
    return 0;
}

问题

  1. 写init函数时,是将q作为变量传入函数,在函数里面分配内存,malloc会返回一个指向queue的指针(一个地址),此时相当于指针变量q是作为形参传入函数,所以对于在函数内的任何修改在主函数中不会体现;

正确的应该是在init函数中为一个指针分配空间,之后将指针作为返回值返回(其实就是一个地址)

  1. 如果用字符数组承接输入的字符串,数组长度需要至少比字符串最大长度大1(字符串以'\0'结尾)
目录
相关文章
|
2月前
|
算法
【❤️算法笔记❤️】-每日一刷-19、删除链表的倒数第 N个结点
【❤️算法笔记❤️】-每日一刷-19、删除链表的倒数第 N个结点
69 1
|
2月前
|
算法 索引
❤️算法笔记❤️-(每日一刷-141、环形链表)
❤️算法笔记❤️-(每日一刷-141、环形链表)
50 0
|
2月前
|
算法
【❤️算法笔记❤️】-(每日一刷-876、单链表的中点)
【❤️算法笔记❤️】-(每日一刷-876、单链表的中点)
44 0
|
29天前
|
算法 安全 搜索推荐
2024重生之回溯数据结构与算法系列学习之单双链表精题详解(9)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第2.3章之IKUN和I原达人之数据结构与算法系列学习x单双链表精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
1月前
|
存储 Web App开发 算法
2024重生之回溯数据结构与算法系列学习之单双链表【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构之单双链表按位、值查找;[前后]插入;删除指定节点;求表长、静态链表等代码及具体思路详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
29天前
|
算法 安全 NoSQL
2024重生之回溯数据结构与算法系列学习之栈和队列精题汇总(10)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第3章之IKUN和I原达人之数据结构与算法系列学习栈与队列精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
2月前
|
存储 缓存 算法
经典算法之链表篇(三)
经典算法之链表篇(三)
|
2月前
|
算法
经典算法之链表篇(二)
经典算法之链表篇(二)
|
2月前
|
算法 索引
经典算法之链表篇
经典算法之链表篇
|
2月前
|
算法
❤️算法笔记❤️-(每日一刷-160、相交链表)
❤️算法笔记❤️-(每日一刷-160、相交链表)
18 1