Linked Lists

Started by
2 comments, last by skillfreak 22 years, 5 months ago
I''m having trouble with my linked list. I have a window class for a GUI system. Which, slaps a window on your screen. Works. Now, I make an array of windows and tell each to render. Works as expected. Now, I put them in a linked list and I get nothing. I''m looking for any ideas. Thanks. Andy
Advertisement
Well, in this case, I suggest you show us some code.
It is probably a problem with your linked list implementation.
Have you thoroughly debugged your linked list before using it
for windows???

-LeeB-
To make things easier for yourself, try using the linked list in the C++ STL (standard template library). It is a complete linked list written for you. It is also very fast.
I was told that I should write my own for understanding, which is probably still a good idea. But should undergo more testing.

Edited by - skillfreak on November 13, 2001 9:57:02 PM

This topic is closed to new replies.

Advertisement