What unwind and ckarmann say. Here is a hint, i implement listcontains for you to give you the idea how the assignment could be meant:
class ListNode {
private:
int value;
ListNode * next;
public:
bool listcontains(int v) {
// does this node contain the value?
if(value == v) return true;
// was this the last node?
if(next == 0) return false;
// return whether nodes after us contain the value
return next->listcontains(v);
}
};
So, you only have the head of the list, which links to the next node in turn. The tail will have next == 0;
