MySQL中的数据库表是如何实现的?

发布于 2025-01-06 09:49:05 字数 91 浏览 0 评论 0原文

在源代码中我想有一个表对象,但是表的元素如何存储在该对象中?使用向量、链表、树或其他东西?当我下载包含大量类的大型程序的源代码并且对此感到好奇时,我似乎永远找不到东西。

In the source code I suppose there's a table object, but how are the elements of a table stored in that object? With a vector, linked list, tree, or something else? I can never seem to find things when I download the source of huge programs with lots of classes and was just curious about this.

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

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

发布评论

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

评论(1

梦断已成空 2025-01-13 09:49:05

MySQL 中可以使用多种不同的表实现。通常,基于磁盘的树是使用 b 树 http://en.wikipedia 的变体来实现的。 org/wiki/B 树

There are several different table implementations that can be used in MySQL. Typically, disk-based trees are implemented using variations of a b-tree http://en.wikipedia.org/wiki/B-tree

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