5761
Creative Projects / Re: Programming Challenges & Resources (#bay12prog) Initiative
« on: May 29, 2010, 11:32:14 pm »
Blacken: I just got back in this forum, I caught the last page or so of this thread. So I don't really know what exactly the discussion is about. I wouldn't mind helping/giving advice though.
BTW: you can do a linked list in one class. A node is a node is a node. There need be no difference between the root node and any other. With a doubly linked list, you have access to the entire list as long as you have any node, instead of needing a reference to the first node with a singly linked list.
BTW: you can do a linked list in one class. A node is a node is a node. There need be no difference between the root node and any other. With a doubly linked list, you have access to the entire list as long as you have any node, instead of needing a reference to the first node with a singly linked list.