It's difficult to tell from your code, but one thing strikes me as incorrect:In Node's constructor, you are ignoring the RuleList that was passed in by the addKeyword method, instead creating an empty list and storing that. [ September 27, 2004: Message edited by: David Harkness ]
That's exactly what it is. I was just so tired yesterday and I hadn't used a list as a constructor parameter before, I let common sense slip.
Dominique
Dominique Ramoney
Greenhorn
Joined: Aug 11, 2004
Posts: 25
posted
0
Hi
I have a linked list class whose nodes contain a linked list;
I'm doing this like so;
class KeywordList{ private Node head;
public KeywordList() { head = null; }
public void addKeyword(String newrule) { Node current,previous,newNode; (initialize stuff here) RuleList rule = new RuleList(); (use a method here from RuleList to add to Rule List) newNode = new Node(newkey, rule, current); newNode.display();
}
class Node { String keyword; int occurrences; Node next; RuleList rule;
Node(String newkey, RuleList rule, Node newLink) { keyword = new String(newkey); rule = new RuleList(); occurrences = 1; next = newLink; }
(methods for Node class follows and Iterator class)
The problem I'm having is that I am unable to access the rule parameter of Node from the display method. My toString method and compareTo method has no problem getting keyword or occurrences but trying to access the rule, yields null.
This is really making my brain bleed. Any help will go long way in avoiding an aneurisym.
As much as I would love to help you but your question is not formed well. It has code that do not pertain directly to the question. Please write us what specificaly doesn't work.