编写一个采用整数参数的方法,并返回整数在列表中出现的次数

时间:2014-04-18 00:55:37

标签: java list linked-list

我是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; }

}

1 个答案:

答案 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;
}