可以通过以下步骤实现:
class ListNode {
int value;
ListNode next;
public ListNode(int value) {
this.value = value;
this.next = null;
}
}
ListNode newNode = new ListNode(10);
newNode.next = head; // 将新节点的next指向当前链表的头节点
head = newNode; // 更新链表的头节点为新节点
ListNode current = head;
while (current.next != null) {
current = current.next;
}
current.next = newNode;
这样就完成了在Java中创建单链表的新节点的过程。需要注意的是,以上代码只是示例,实际应用中可能需要根据具体需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云