我嘗試了許多編碼來解決問題,但也無法找到答案。任何人都可以幫我解決我的問題,並告訴我錯在哪裏編碼?編寫一個遞歸方法來計算鏈節點鏈中的節點數
/** Task: Recusively counts the nodes in a chain.
* @param start the first node
* @returns the number of nodes in the linked chain */
public int countNodes(Node start)
{
if (start == null)
// base case
{
countNodes (Node start);
// recursive case
else
System.out.println (start.data);
return start.next;
}
} // end countNodes
請告訴我們您到目前爲止嘗試過的方法,然後我們可以幫助您改進它。如果這是作業,請相應標記:-) – 2010-09-09 08:32:08
這是一項家庭作業嗎? – 2010-09-09 08:32:14
這是一項任務 – Tonberry 2010-09-09 08:35:42