2

GLib 是否具有可用作 LIFO(堆栈)集合的数据类型? 它确实有列表、队列、哈希表等,但我似乎找不到堆栈数据类型。

有一种垃圾堆栈类型,但它是为特定目的而设计的,并且自 2.48 版以来也已被弃用。

在 GLib 中什么可以用作堆栈?

4

3 回答 3

3

从未使用过它,但从文档中您应该能够使用双端队列。要使用堆栈g_queue_push_head()并从堆栈中弹出使用,g_queue_pop_head()请参见:https ://people.gnome.org/~desrt/glib-docs/glib-Double-ended-Queues.html

于 2017-07-20T10:24:49.980 回答
2

我需要同样的东西,所以我写了这个简单的例子:

// An example stack in glib using a Queue. As this example uses
// integers, we make use of the glib GPOINTER_TO_UINT macros.
//
// Compile by:
//    cc `pkg-config --cflags --libs glib-2.0` -o test-stack test-stack.c

#include <glib.h>
#include <stdio.h>
#include <stdint.h>

void pintqueue(GQueue *q)
{
    int i;
    printf("[%d] ", q->length);

    GList *h = q->head;

    for (i=0; i<q->length; i++) {
        printf("%d ", (int)GPOINTER_TO_UINT(h->data));
        h=h->next;
    }
    printf("\n");
}

void qintpush(GQueue *q, gint val)
{
    g_queue_push_tail(q, GUINT_TO_POINTER((guint)val));
}

gint qintpop(GQueue *q)
{
    if (q->length==0) {
        // "Error handling"
        g_message("Ooops! Trying to pop from an empty stack!");
        return INT_MAX;
    }
    return (gint)(GPOINTER_TO_UINT(g_queue_pop_tail(q)));
}

gint main(int argc, char **argv)
{
    GQueue q = G_QUEUE_INIT;

    qintpush(&q, 34);
    qintpush(&q, 42);
    qintpush(&q, -1);

    pintqueue(&q);

    printf("Popped: %d\n", qintpop(&q));
    pintqueue(&q);

    for (int i=0; i<5; i++)
        printf("Popped: %d\n", qintpop(&q));

    exit(0);
}

于 2019-06-21T06:14:08.500 回答
1

派对有点晚了,但更轻量级的堆栈方法是使用单链表类型 GSList,它不需要显式容器对象。

GSList *stack = NULL;
// push:
stack = g_slist_prepend(stack, element);
// stack non-empty?
if (stack) { ... }
// peek head without popping:
element = stack->data;
// pop:
stack = g_slist_delete_link(stack, stack);

用于返回元素的正确“pop”的包装函数可能看起来像这样:

void *stack_pop(GSList **stackp) {
    if (!*stackp)
        return;
    void *ret = (*stackp)->data;
    *stackp = g_slist_delete_link(*stackp, *stackp);
    return ret;
}
// ...
element = stack_pop(&stack); // returns NULL if stack is empty
于 2022-02-04T15:22:46.167 回答