Saturday, May 10, 2014

Lesson 4: BST (Binary Search Tree) Basic Understandings

Binary Search Tree or BST for short is similar to double linked list that we have discussed in the previous lesson. The only different is the node will link to both (if they have 2 children) child and its parent (if its not on top).

Friday, May 9, 2014

Lesson 3: Double Linked List

In to day's lesson, we will be discussing further about double linked list. At first I thought that this was a simple topic to understand, but I soon enough I was proven wrong. Its simple in a way but sometimes it gets really complex.

For today's lesson, the content are going to be the ways to add data to the list, delete data from the list and then print.