--- 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