我目前正在为Java中的循环链表工作。我们应该能够在列表的前面插入和后面插入。但是,我已经让这些方法在循环链表类中正常工作。
list.InsertAtFront(0);
list.InsertAfter(0, 4); // Inserting the 4 after 0 which was inserted above...
我得到的结果是
[data:ID=0{previous:4},{next:4}]->[data:ID=4{previous:0},{next:null}]
对于第二次插入,这里的next指向null{next:null}
应该指向列表的头部{next:0}
。
节点类
package circular_linked_list;
public class Node {
private int id;
private Node next_node;
private Node previous_node;
public Node(){
this.id = 0;
this.next_node = null;
this.previous_node = null;
}
public Node(int id, Node next_node, Node previous_node){
this.id = id;
this.next_node = next_node;
this.previous_node = previous_node;
}
public Node(int id){
this.id = id;
this.next_node = null;
this.previous_node = null;
}
public Node(Node node){
this.id = node.GetId();
this.next_node = node.GetNextNode();
this.previous_node = node.GetPreviousNode();
}
public void SetId(int id) {
this.id = id;
}
public void SetNextNode(Node next_node) {
this.next_node = next_node;
}
public void SetPreviousNode(Node previous_node) {
this.previous_node = previous_node;
}
public int GetId() {
return this.id;
}
public Node GetNextNode() {
return this.next_node;
}
public Node GetPreviousNode() {
return this.previous_node;
}
public void NodeDetails(){
if(this.previous_node != null && this.next_node != null){
System.out.print("[Data: __ID = " + this.id + "__ |{Previous: " + this.previous_node.GetId() + "}, {Next: "+ this.next_node.GetId() + "}] -> ");
}
else if(this.previous_node != null){
System.out.print("[Data: __ID = " + this.id + "__ |{Previous: " + this.previous_node.GetId() + "}, {Next: null}] -> ");
}
else if(this.next_node != null){
System.out.print("[Data: __ID = " + this.id + "__ |{Previous: null}, {Next: "+ this.next_node.GetId() + "}] -> ");
}
else{
System.out.print("[Data: __ID = " + this.id + "__ |{Previous: null}, {Next: null}] -> ");
}
}
}
循环链表类
package circular_linked_list;
public class CircularLinkedList{
private Node head;
private Node tail;
public CircularLinkedList(){
this.head = null;
this.tail = null;
}
public CircularLinkedList(Node head, Node tail){
this.head = head;
this.tail = tail;
}
public void SetHead(Node head){
this.head = head;
}
public void SetTail(Node tail){
this.tail = tail;
}
public Node GetHead(){
return this.head;
}
public Node GetTail(){
return this.tail;
}
public void InsertAtFront(int data){
Node new_node = new Node(data);
if( new_node != null){
// If the list is not empty then...
if(this.head != null){
this.head.SetPreviousNode(new_node); // Set the list head's previous node to point to the new node.
new_node.SetNextNode(this.head); // Set the new node's next node to point to the current list head.
new_node.SetPreviousNode(this.tail); // Set the previous node of the head of the list to point to the tail of the list
}
this.head = new_node; // Set the list head to point to the new node
this.FindTail(); // Set the tail of the list.
}
else{
System.out.print("Sorry, the list is full!");
}
}
public void InsertAfter(int target, int data){
Node new_node = new Node(data);
if(new_node != null){
Node target_node = this.head;
boolean found = false;
// This while loop will loop to find if a node is equal to the value passed as target.
while(target_node != null){
if(target_node.GetId() == target){
// If the target is found then break the loop to keep this current node as the target node.
found = true;
break;
}
// Assigning the target node next node to the target node.
target_node = target_node.GetNextNode();
}
// If the target was found then...
if(found){
new_node.SetPreviousNode(target_node); // Set the previous node of the new node to point to the target node.
// Set the next node of the new node with the target node's next node to continue to link.
new_node.SetNextNode(target_node.GetNextNode());
// If the target node's next node is not null, then set the target node's next node->previous node to point to the new node.
if(target_node.GetNextNode() != null){
target_node.GetNextNode().SetPreviousNode(new_node);
}
target_node.SetNextNode(new_node); // Set the target node's next node to point to the new node.
// Setting the tail of the list...
this.FindTail();
}
else{
System.out.println("Sorry, but the integer " + target + " was not found in the list!\n");
}
}
else{
System.out.println("Sorry, the list is full!\n");
}
}
public void DisplayList(){
Node current_node = this.head;
while(current_node != null){
current_node.NodeDetails();
current_node = current_node.GetNextNode();
}
}
private void FindTail(){
Node current_node = this.head;
// Traversing from the start of the list to the end to get the tail.
while(current_node.GetNextNode() != null){
current_node = current_node.GetNextNode();
}
this.head.SetPreviousNode(current_node); // Updating the head of the list previous node.
this.SetTail(current_node); // Set the tail of the list with the last node.
}
}
主班
package circular_linked_list;
public class Main {
public static void main(String[] args) {
CircularLinkedList list = new CircularLinkedList();
// Inserting at the front of the list
list.InsertAtFront(0);
// Inserting 4 right after the 0
list.InsertAfter(0, 4);
// To display the nodes/elements in the list
list.DisplayList();
}
}
代码中的主要问题是假设下一个引用是
null
,但这与循环链表的原则相矛盾。在一个循环链表中,您总是可以从一个节点到下一个节点,在循环中无休止地运行。因此,原则是:下一个
引用都不应该是null
!
这意味着您必须在设置null
或检查null
值的几个地方修改代码。
其他一些评论:
>
让节点
构造函数通过其下一个
和上一个
成员使新节点引用自身。这样可以避免从一开始就在那里存储null
。这就像自己制作一个单节点循环链表一样。
循环不应该检查null
,而是检测您已经循环并返回到head
节点。
以下是更正的节点
类:
public class Node {
private int id;
private Node next_node;
private Node previous_node;
public Node(){
this.id = 0;
// Make a node refer to itself by default -- this is practical in a circular list
this.next_node = this;
this.previous_node = this;
}
public Node(int id, Node next_node, Node previous_node){
this.id = id;
this.next_node = next_node;
this.previous_node = previous_node;
}
public Node(int id){
this.id = id;
// Make a node refer to itself by default -- this is practical in a circular list
this.next_node = this;
this.previous_node = this;
}
public Node(Node node){
this.id = node.GetId();
this.next_node = node.GetNextNode();
this.previous_node = node.GetPreviousNode();
}
public void SetId(int id) {
this.id = id;
}
public void SetNextNode(Node next_node) {
this.next_node = next_node;
}
public void SetPreviousNode(Node previous_node) {
this.previous_node = previous_node;
}
public int GetId() {
return this.id;
}
public Node GetNextNode() {
return this.next_node;
}
public Node GetPreviousNode() {
return this.previous_node;
}
public void NodeDetails(){
System.out.print("[Data: __ID = " + this.id + "__ |{Previous: " + this.previous_node.GetId() + "}, {Next: "+ this.next_node.GetId() + "}] -> ");
}
}
和更正的circularLinkedList
类:
public class CircularLinkedList{
private Node head; // No need for a tail
public CircularLinkedList(){
this.head = null;
}
public CircularLinkedList(Node head){
this.head = head;
}
public void SetHead(Node head){
this.head = head;
}
public Node GetHead(){
return this.head;
}
public void InsertAtFront(int data){
if (this.head == null) {
this.head = new Node(data);
} else {
insertAfter(this.head.GetPreviousNode(), data);
this.head = this.head.GetPreviousNode();
}
}
public Node find(int target) {
Node target_node = this.head;
while (target_node != null) {
if(target_node.GetId() == target) {
return target_node;
}
target_node = target_node.GetNextNode();
if (target_node == this.head) break; // running in circles
}
return null;
}
// Add this method to avoid code repetition
public void insertAfter(Node target_node, int data) {
Node new_node = new Node(data, target_node.GetNextNode(), target_node);
target_node.SetNextNode(new_node);
new_node.GetNextNode().SetPreviousNode(target_node);
}
public void InsertAfter(int target, int data){
Node target_node = find(target);
if (target_node != null) {
insertAfter(target_node, data);
} else{
System.out.println("Sorry, but the integer " + target + " was not found in the list!\n");
}
}
public void DisplayList(){
Node current_node = this.head;
while (current_node != null) {
current_node.NodeDetails();
current_node = current_node.GetNextNode();
if (current_node == this.head) break; // running in circles
}
}
}
问题内容: 我需要用Java编写一个将链表中的第一个元素移动到最后位置的方法。 为此,我相信我必须设置一个节点以引用head之后的第一个元素,然后将下一个节点设置为null。我尝试使用我的方法执行此操作,但是在运行该方法时,输出不正确。 我所剩的班级太多了,无法在此处发布,但是我认为我只需要在概念化如何将第一个元素移到列表末尾方面提供帮助。 我写的方法是: 问题答案: 您要删除列表的开头并使其成为
问题内容: 如果我有:和 如果调用,我是否可以通过这种方式将linkedlist2附加到linkedlist1的末尾: 它变为并 变为? 那可能吗 ?还是我需要其他结构? 以下代码不起作用: 输出: 问题答案: Java提供的标准LinkedList类缺少此功能。 正如Donal Boyle所发布的那样,您可以将一个列表的内容添加到另一个列表中,但这并不能像您所描述的那样保持链接。
我用C语言编写了双重链接列表的代码,它从头到尾的遍历很好,但从尾(end)到头的遍历陷入了无限循环,只打印最后一个节点的数据,我不知道出了什么问题。
似乎人们总是说,如果一个单链接列表的头是空的,那么这个列表是空的,但是检查尾部也会起作用吗?假设我确实知道一个列表有一个尾部,我可以检查尾部是否为空以确定它是否为空吗?
如果为正值,则使用指针移动 次 如果为负,则使用指针移动 次 如果为0,则根本不移动。 我需要编写一个方法,该方法接收指向列表头部的指针作为参数,如果有一个在头部节点开始和结束的跳转路径,则返回。 一个示例列表: 这不是家庭作业(我正在做不同的练习,以便为考试做准备)
单链表的定义: 如果我想从头到尾逐个打印节点值,我需要使用head=head.next迭代直到head==null。在这种情况下,我们永远无法在打印后返回到head(value=1)节点。我的问题是如何在遍历单链表时保持头部?