aspose file tools
The moose likes Beginning Java and the fly likes Trying to learn link list Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Trying to learn link list" Watch "Trying to learn link list" New topic
Author

Trying to learn link list

Yafet Negussie
Greenhorn

Joined: Mar 17, 2012
Posts: 4
Hi,
I'm trying to learn link lists. I understand the general concept, but I'm having difficulties implementing simple singly linked list. Here is the code so far, but it doesn't compile... I appreciate any explanations of what I'm doing wrong and how the code is supposed to be implemented.

Junilu Lacar
Bartender

Joined: Feb 26, 2001
Posts: 4118
    
    2

Next time, you should post the compiler error message as well; that will help folks help you. On Line 15, you are trying to instantiate a Node with a no-argument constructor. However, as you have written Node, it doesn't have a no-argument constructor.


Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Trying to learn link list
 
Similar Threads
Test class
Issues with Linked List Add methods
Generic Java - Linked List
Java Linked List
list ADTs