The book explores the development of a series of key data structures using C and C++. The reader is taken on a graduated journey with each chapter leading to the development of a new C++ template class.The data structures are:A Linked List, including a double linked list that allows a look at list reversal and sorting.A FiFo Queue class based upon a linked list looking at the benefits and subtle challenges of sub-classing.A LiFo Stack class.An introduction...