-1
如何找到並從LinkedList
只有一個元素,它的頭刪除節點?它沒有任何尾巴,當前,頭部,預告片和計數器。如何定位並從一個只有一個元素的LinkedList中移除一個節點,它的頭部?
我也想
- 拋出
NullPointerException
如果列表爲空 - 回報真如果提供的價值被發現,去除
- 回報假如果提供的值不找到
Public class SLList
{
Private class Node
{
Private int info;
Private Node next;
Private Node (int value, Node ptr)
{
Info = value;
Next = ptr;
}
}
Protected Node head = null;
Public Boolean remove (int value) throws NullPointerException
{
}
}
'Private' or'private'? – Rustam
歡迎來到'java' – Rustam
private是正確的 –