在 C 中模拟列表

发布于 2024-12-17 08:10:03 字数 133 浏览 0 评论 0原文

有什么办法可以模拟C语言中的列表数据结构吗? (我真正需要的是一个双向链表。)

更简单地说,有没有一个好的方法来解决最近最少使用的内存管理技术?

我目前的思路是我需要访问列表的头部和尾部(分别用于获取/删除值和插入值)。

Is there any way to emulate the list data structure in C? (What I really need is a doubly-linked list.)

More simply put, is there a good way to solve the Least Recently Used memory management technique?

My train of thought at the current time has me needing access to both the head and tail of the list (for obtaining/removing values and for inserting values, respectively).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪你到最终 2024-12-24 08:10:03

经常引用的 C 语言列表实现来自 Linux 内核:list.h

在 C 语言的上下文中,它做了很多正确的事情。

An oft-cited list implementation in C comes from the Linux kernel: list.h

It does a lot of things right, in the context of the C language.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文