什么是列表指针?是否可以提供列表指针的示例?
我实际上正在研究图表示,即我们如何表示具有多个节点和边的图?
i am actually working on graphs representation, that is how do we represent a graph with a number of nodes and edges?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过指向指向第二个元素的第一个元素来构建列表指针,依此类推。好吧,如果我很好地理解你的问题的话。
在面向对象中,您可以创建一个包含您想要的任何内容的类,以及一个包含同一类的实例的方法“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'