什么是列表指针?是否可以提供列表指针的示例?

发布于 2024-10-13 18:27:15 字数 37 浏览 3 评论 0原文

我实际上正在研究图表示,即我们如何表示具有多个节点和边的图?

i am actually working on graphs representation, that is how do we represent a graph with a number of nodes and edges?

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

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

发布评论

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

评论(1

呆橘 2024-10-20 18:27:15

您可以通过指向指向第二个元素的第一个元素来构建列表指针,依此类推。好吧,如果我很好地理解你的问题的话。
在面向对象中,您可以创建一个包含您想要的任何内容的类,以及一个包含同一类的实例的方法“getNext()”,如果它是最后一个元素,则为 null。
在C中,你可以创建一个“结构”

You can build a list pointer by pointing to a first element that points to the second element, and so on. Well, if I understand well your question.
In object oriented, you make a class containing whatever you want and a method 'getNext()' that contains an instance of the same class, or null if it's the last element.
In C, you can make a 'struct'

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