For today's assignment, we have interviewed the PIC from one of the UKM (club) in Binus University Alam Sutera who had been given a task to make a showcase of the culture and activities from each respective UKM at the Grand Launching Event.
Thursday, October 30, 2014
Saturday, June 14, 2014
Lesson 5: More of BST
In this post I will be discussing briefly about the logic in searching a certain node, adding new nodes to a tree, delete a node that are already present within a tree and some computer reading processes (prefix, postfix and infix).
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.
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.
Monday, March 24, 2014
Lesson 2: Linked List Implementation
After learning about Singly Linked List, now let's see what are their implications.
As you all know from the previous lesson, single linked list only have a tail that points towards the next data. Now for example you want to make a MP3 player that could play all the songs and repeat it again as soon as it finishes its last song. Some of you may think that using a single linked list isn't possible here. But there is a trick to it in order for you to recall the first data from the last data. And to do that, we are going to make a special single linked list called the Circular Linked List!
As you all know from the previous lesson, single linked list only have a tail that points towards the next data. Now for example you want to make a MP3 player that could play all the songs and repeat it again as soon as it finishes its last song. Some of you may think that using a single linked list isn't possible here. But there is a trick to it in order for you to recall the first data from the last data. And to do that, we are going to make a special single linked list called the Circular Linked List!
Circular Singly Linked List |
Tuesday, March 18, 2014
First Lesson (Part 2) : Linked List
Hey guys, this is the continuation of the first lesson. Last time we talked about Arrays and Pointers. Now we are going to apply both of those topics into this new topic that we are going to learn.
Linked list is somewhat similar to struct of array, it's used to store some data that are somewhat related. Example is storing data of name and age using either linked list or array are possible. But there are also differences between those two. Array are stored in a fixed memory while you can always add more memory space when you're using linked list. The down side of using linked list is the process will take slower time and it is a lot more difficult to do instead of using just arrays. You will understand why later on in this discussion.
Linked list is somewhat similar to struct of array, it's used to store some data that are somewhat related. Example is storing data of name and age using either linked list or array are possible. But there are also differences between those two. Array are stored in a fixed memory while you can always add more memory space when you're using linked list. The down side of using linked list is the process will take slower time and it is a lot more difficult to do instead of using just arrays. You will understand why later on in this discussion.
Sunday, March 9, 2014
First Lesson: Array and Pointer
First of all what I have learned this week are Array, Pointers and Linked List. I will divide this lessons into 2 posts because it may be too long. So here are the lessons for today.
Friday, March 7, 2014
Introduction
Hey Guys, for you guys who already know me then Hi and for you who haven't know me yet then... Hi my name is Andrew, pleased to meet ya. Some of you may have known me from the previous blog I had made which is the Andrew's Section. This new blog I made will have a different goal and mission from the previous blog I had made.
Subscribe to:
Posts (Atom)