I have been looking all over the web for a good example of Doubly Linked Lists, so that I can use one for a program I am working on at the moment.
I would have used a vector, but because I am building a windows forms app the compiler doesnt like me trying to mix STL stuff into my app.
Does anyone know of any really good tutorials or examples, that include functions for adding nodes to front, end and anywhere inbetween, as well as other standard functions like deletion and finding values by using a search or looking at a value at a particular location by its place in the chain
Thanks.