filmov
tv
Data Structures - Building a Queue with a Linked List

Показать описание
Table of Contents:
00:00 - Introduction
00:33 - Creating the Queue with a Linked List
00:43 - The Sample Element Class
01:10 - The Queue Class
01:55 - Writing the default constructor
02:17 - Options to overload the constructor
02:29 - Your common methods
02:34 - The Enqueue Method
04:54 - The dequeue method
08:16 - Writing the top() method
09:15 - Other Methods we could add
10:41 - Testing our Queue with a demo app