如何访问链接列表的元素?
由于Java中没有自引用指针概念...我该如何解决这个问题...
我不允许在Java中使用内置的链接列表类...
但是“应该遵循与像 C 中一样创建链接列表。” Java中最好的替代节点->下一个,节点->上一个......
Since there are no self-refering pointer concept in Java... How do I proceed to tackle this issue...
I am not allowed to use Built in class of Link List in Java...
But "Should follow the same method of creation of Link List like in C." What could be the best Substitute node->next, node->prev in Java...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在java中,链表可以通过创建一个带有自身成员变量的类来实现,而不是带有指向下一个节点的指针和var的对象。
下面列出了示例实现:
要创建链接列表,请创建头:
该节点类有两种将节点添加到列表的方法:
或者
这里是一个值为 1 - 10 的列表的示例
现在您可以打印访问以下元素通过迭代列表来获取此列表。
Instead of an object with a pointer to the next node and an var, in java linked lists can be implemented by making a class with a member variable of itself.
a sample implementation is listed below:
To create a link list, create head:
This node class has two ways of adding nodes to the list:
or
here is an example of a list with values 1 - 10
now you can print access the elements of this list by iterating through the list.
“this”关键字是指向 self 的指针。
关于您问题的其余部分 - 请澄清。
The "this" keyword is the pointer to self.
Re the rest of your question- please clarify.