I think no one can help you like that you should start with something and come here with the specific problems that you may have while making your own linked list. Believe me its very simple. spending some time with google can reveal many things.
To: [email protected] From: [email protected] Date: Thu, 7 May 2009 00:31:15 +0000 Subject: [c-prog] Re: linked list --- In [email protected], Farhan M.Amin <decent_al...@...> wrote: > > > by studying what a linked list is > > > > Though, you can use std::list. For example if you want a linked list of > integers > > > > std::list<int> list; > > > > for ( int i=0; i<10; ++i) > > { > > list.push_back( i); > > } > > > > but for using std::list you should know what STL ( Standard Template Library > ) is and how it works. > > > > To: [email protected] > From: syedsarah...@... > Date: Wed, 6 May 2009 13:15:23 +0000 > Subject: [c-prog] linked list > > > > > > > > any can one tell me how to make a simple link list which can add and delete > node at run time in C++??? > > > > > > > > > > __________________________________________________________ > HotmailĀ® goes with you. > http://windowslive.com/Tutorial/Hotmail/Mobile?ocid=TXT_TAGLM_WL_HM_Tutorial_Mobile1_052009 > > [Non-text portions of this message have been removed] > I dont have much concept of linked list...I just want to understand this concept ... just want to make a simple linked list first _________________________________________________________________ Insert movie times and more without leaving HotmailĀ®. http://windowslive.com/Tutorial/Hotmail/QuickAdd?ocid=TXT_TAGLM_WL_HM_Tutorial_QuickAdd1_052009 [Non-text portions of this message have been removed]
