Computers & Internet

Linked Lists – Traversing the list in reverse order, Doubly Linked List

Traversing a singly linked list in a forward manner (i.e. left to right) is simple as demonstrated in x2.1.4. However,… Read More

7 years ago

Linked Lists – Deletion, Traversing the list

Deleting a node from a linked list is straightforward but there are a few cases we need to account for:… Read More

7 years ago

Linked Lists – Insertion , Searching and more

In general when people talk about insertion with respect to linked lists of any form they implicitly refer to the… Read More

7 years ago

The Good and Bad of Social Networking. Be careful…

Social Networking The Good and Bad of Social Networking A piece highlighting the good and bad things about using social… Read More

7 years ago

Linked Lists – Data Structures and Algorithms

Linked lists can be thought of from a high level perspective as being a series of nodes. Each node has… Read More

7 years ago

Linked Lists – Data Structures and Algorithms

Linked lists can be thought of from a high level perspective as being a series of nodes. Each node has… Read More

7 years ago

Introduction of Data Structures and Algorithms

Testing All the data structures and algorithms have been tested using a minimised test driven development style on paper to… Read More

7 years ago

Introduction of Data Structures and Algorithms – Object oriented concepts, Pseudo code

Object oriented concepts For the most part this book does not use features that are speci¯c to any one language.… Read More

7 years ago

Data Structures and Algorithms – Imperative programming language

In The last lecture we study about – Big Oh notation Figure 1.1 shows some of the run times to… Read More

7 years ago

Data Struc tures and Algorithms – Big Oh notation

For run time complexity analysis we use big Oh notation extensively so it is vital that you are familiar with… Read More

7 years ago