Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Doubly Linked Linear List
Name: B2 Date: March 11, 2009 at 10:54:51 Pacific OS: Windows Vista Subcategory: C/C++
Comment:
How to build a Doubly Linked Linear List of n elements?
Summary: i been given this task too do but have no idea where to start or how to do it...any one offer any hints? Thanks :) The first prototype implementation you need to create is based on a doubly linked lis...
Summary: Linked lists are actually one of the easier data containers in programming, but they're not the tidiest things to do in C. They're perhaps a little more convenient in C++ using classes, which are nice...
Summary: I'll just explain a bit about LinkedLists for u. Basically they are similar to arrays, but: They are NOT static in size and you can't index into them, only 'walk' the list (called traversing). here's ...