![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
|
literature on "linked lists"
hey guys,
could anyone point me a good book for c++ beginners with good explanations on linked lists. or a web page with tutorials or something would also be fine i had a programming class today and i gotta say this teach is awfull. first class was ok i guess, but this one about linked lists, which most beginners don't know how to work with, it was just...disaster. he was just reading sentences written on powerpoint slides, and a lot of program examples using linked lists. he was basically just reading the code without explaining too much. |
|
|
|
|
|
#2 | |
|
Professional Programmer
Join Date: May 2006
Location: UK - London
Posts: 329
Rep Power: 3
![]() |
did you try googling "link list".............there are tons of free material on link list out there......but you have to search for it.........
__________________
Quote:
|
|
|
|
|
|
|
#3 |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
Yep. Google around. My own, short explanation of linked lists: it is basically a sequence of nodes (structures), each of them containing a value and a pointer, pointing to the next node. This way, you can easily add an item to the list: you allocate a new node and make the pointer of the last node point to it. You can also insert a node in between. If you want to insert a node between node 3 and 4, you set the pointer of node 3 to the address of the new node. The pointer of the new node you set to node 4.
For a more detailed explanation, google around a bit. It is a relatively easy concept - once you understand the basic idea. Good luck . |
|
|
|
|
|
#4 |
|
Programming Guru
![]() Join Date: Oct 2004
Location: namespace std
Posts: 1,246
Rep Power: 5
![]() |
yeah, it's a bitch. try teach yourself C in 21 days (got it for $2 on amazon) or check out the finished projects section of this site.
__________________
i put on my robe and wizard hat... Have you ever heard of Plato, Aristotle, Socrates?...Morons. |
|
|
|
|
|
#5 |
|
Battle Programmer
Join Date: Feb 2006
Location: Bellevue, WA, USA
Posts: 751
Rep Power: 3
![]() |
You could also consider looking at Wikipedia, which has a decent description of many programming related stuffs (whether data structures, algorithms, languages, and a fair variety).
__________________
<insert disclaimer here> <insert shameless plug for Visual Studio here> |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Javascript Literature? | Lich | JavaScript and Client-Side Browser Scripting | 6 | Nov 12th, 2005 8:29 AM |
| literature for Windows App. creation | badbasser98 | C++ | 4 | Jun 10th, 2005 9:02 AM |
| Reccomend some Java literature..? | Lich | Java | 3 | May 13th, 2005 9:55 AM |