• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

KKEP ME AWAY FROM THE FORUM

NuclearFusi0n

Diamond Member
OMG LINKED LISTS

*bends over; C++ is taking its toll*

this, kiddies, is why you do your work BEFORE the morning that its due. rawr.
 
I'm trying to write documentation, but ATOT has a hold of me like nothing before. ... for the last 2 weeks.

I hate writing docs.
 
Link Lists RULE!!!!!

My friend and I wrote a program that require each node in the linked list to be linked to 6 other nodes of the list.... It was just sweet!

amish
 
Originally posted by: agnitrate
cur=cur->next 😉

-silver
template <class datatype>
class Node
{
public:
datatype data;
Node<datatype> *next;
};

template <class datatype>
class List
{
public:
List();
void print(); // Prints Entire List
void insert(); // Insert Function
void remove(); // Remove Function
bool search(); // Search Function
private:
Node<datatype> *first;
};

don't forget the exception handling
rolleye.gif
 
Back
Top