2014-02-12 58 views
0

我需要將我的鏈接列表遞歸爲字符串遞歸。該變量是下一個節點,變量值是節點的字符串值。字符串需要被格式化,以便在值之間有一個分號(前後有一個空格)。這是我迄今爲止..重寫toString方法將鏈接列表格式化爲字符串遞歸地

public String toString() { 
    String result = ""; 
    if (this.next == null) {//base case 
     return " ; " + value; 
    } 
    else { 

     result += this.next.toString() ;//reduction step 
    } 
    return result; 
+0

問題是什麼?什麼是問題? – csmckelvey

回答

0
public String toString() { 
    String result = value; 
    if (next != null) { 
     result += " ; " + next.toString(); 
    } 
    return result; 
}