Announcement
iPhone DZone: Fresh Links On Your iPhone by matt at Sat Jul 05 14:09:51 EDT 2008
Reading DZone on your iPhone just got a little bit easier. Visit http://dzone.com/iphone from your iPhone to try out our beta iPhone support. You can view stories, filter by tags, and login. We'd appreciate your feedback at feedback@dzone.com.
Vote up, vote down. It doesn't matter which - just vote! Login and vote now.
By mswatcher
via codeproject.com
Submitted: Mar 26 2008 / 23:38
Linked list is one of the fundamental data structures, and can be used to implement other data structures. In a linked list there are different numbers of nodes. Each node is consists of two fields. The first field holds the value or data and the second field holds the reference to the next node or null if the linked list is empty.
Comments
Ray Burkholder replied ago:
Just in case you weren't aware, the C++ Standard Template Library already has a linked list template... but good tutorial on the subject none-the-less.
Voters For This Link (1)
Voters Against This Link (0)