May 2012
Intermediate to advanced
679 pages
16h 56m
English
The data whose size and shape are not initially defined leads to dynamic data structures. These structures grow or shrink in time (means dynamic). Again, a lot of study has gone into these structures and some basic structures have emerged. The simplest of such structures is a linked list. Here in this section we will be discussing simple linear linked list.
As the name suggests, linked list is a list. Are lists similar to ordinary arrays? Well, list is an abstract data structure. An array is a tool available in C++ to implement it. However, we need not use arrays to implement the list. We can create a list by linking (with the help of pointers) the list elements. Therefore, the name linked list. ...
Read now
Unlock full access