Advertisement

01.19.2006 at 05:06PM PST, ID: 21703448
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.2

Linked Lists

Asked by eamarks in C++ Programming Language, Microsoft Visual C++

Tags: , ,

Hello everyone, sorry for the generic title.

I am attempting to create a class with all of my linked list operator functions (addnode, deletenode, etc.) and which also includes a struct of info for each node.  My problem is that I will be creating several linked lists which will each store different values and I would like to only have one generic node structure.  Here is what I have:

class LinkedList
{
public:
      LinkedList(void);
      ~LinkedList(void);
      
      struct LinkNode                                    //A link node item
      {
            LinkNode *pNext;                        //A pointer to the next node in the list
      };

      LinkNode *pStart;                              //A pointer to the start of the linked list
            
      void AddNodeToHead();                        //Add a new node to the beginning of the linked list
      void DeleteNodeFromHead(void);            //Delete the first node in the list
      void DeleteAllNodes(void);                  //Delete all of the nodes in the list
      
};

I would then have structs for each specific type of list that I would declare elsewhere:

struct ListType1
{
      int var1, etc...
};

struct ListType2
{
      char var1, etc...
};


I would like to be able to declare a linked list and somehow specify which struct it uses.  So that for any list I could access its variables with LinkedList.LinkNode->variables.
I have absolutely no idea how to do this or if it is even possible.

Let me know if I need to clarify anythings - thanks.Start Free Trial
[+][-]01.19.2006 at 05:24PM PST, ID: 15745423

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 14-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]01.19.2006 at 07:09PM PST, ID: 15745971

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.19.2006 at 10:37PM PST, ID: 15746851

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.20.2006 at 01:18AM PST, ID: 15747450

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.20.2006 at 01:24AM PST, ID: 15747469

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: C++ Programming Language, Microsoft Visual C++
Tags: linked, linknode, list
Sign Up Now!
Solution Provided By: gerhardschoeman
Participating Experts: 7
Solution Grade: A
 
 
[+][-]01.20.2006 at 01:31AM PST, ID: 15747493

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 14-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]01.20.2006 at 04:05AM PST, ID: 15748035

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.20.2006 at 06:14AM PST, ID: 15748823

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.20.2006 at 06:18AM PST, ID: 15748862

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.20.2006 at 10:15AM PST, ID: 15751315

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-43