我是Java的Linked List的新手,并且无法找到任何帮助。
编写一个采用整数参数的方法,并返回整数的次数 发生在列表中
public class LinkedList
{
private class Node
{
public int data;
public Node next;
public Node( int datum, Node n ) {data = datum; next = n;}
}
private Node head; // the head of the list
LinkedList() { head = null; }
}
答案 0 :(得分:0)
public int count(final int n){
int count = 0;
Node node = head;
while(node != null){
if(node.data == n)
++count;
node = node.next;
}
return count;
}