Yes you are right and i know that too. But i was just showing what is the typical structure of each node in the list.
By the way thanks for making it clear.
User Profile
Collapse
-
Go through the below file which created by me and let me know if it helps you to solve your problem.
-Krunal
http://www.scribd.com/doc/17471664/P...Pointer-Part-1...Leave a comment:
-
It's always good to read book before you go further.
Basic defination of Link list is "chain of nodes". all nodes contain the data part and pointer which is pointing to the next node.
typical structure of linklist class is
class Node
{
public:
Node(int ReceivedNumber, Node *ReceivedNodePt r);
~Node();
private:
...Leave a comment:
-
How to get the attribute from the self closing tag
Let me give you my problem statement:
Code:<positiondata > <touchpad reportedFingers="2" /> <timestamp user="Dev" time="1252088979018" /> <reported2d x="447" y="232" z="31" w="1" finger="0" fingerPresent="false" /> <fingercount count="1" timestamp="1252088992144" />
No activity results to display
Show More
Leave a comment: