我想合併兩個有序的單鏈表。我試圖找出問題所在,但我無法找到答案。輸出不是我所期待的。 第一列表 11-> 12-> 13-> 15-> 17-> 19->空 :下面 class Test
{
Node head; // head of list
class Node
{
int data;
Node next;
Node(int d){
data
我需要爲我的整數數組創建一個單鏈表,但是,我不知道現在我的代碼有什麼錯誤。 這是創建節點的代碼。 (的數據) package sllset;
class SLLNode {
int value;
SLLNode next;
public SLLNode(int i, SLLNode n){
value = i;
next = n
}
}
這裏是我的Node對象: public class Node<Any> {
protected Any data;
protected Node<Any> link;
public Node() {
this.data=null;
this.link=null;
}
public Node(Any data, Node<Any> link) {
thi