cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
double linked list
double linked list
Mar 21, 2014 at 1:08pm UTC
satyanani40
(1)
I need to create a Double linked list with prev and next pointers please help me
Mar 21, 2014 at 1:39pm UTC
nvrmnd
(656)
1
2
3
4
5
6
struct
Node { X data; Node* next; Node* previous; };
Mar 21, 2014 at 1:46pm UTC
TwilightSpectre
(1392)
#include <list>
Topic archived. No new replies allowed.