View on GitHub

CS2040C

This is the lab related content for the module CS2040C (Data structures and Algorithms)

Lab 03

Here is a pdf version of the ppt I covered during the lab. And the codes that I (skimmed through) / (demonstrated live).

content.pdf (The pdf version of the ppt shown)

stl_list.cpp (Using STL List as a linked list structure)

list_implementation1.cpp (List implementation v1)

list_implementation2.cpp (List implementation v2) (Written live in class)

Note - Both the implementations of list have basic methods like insertFirst, reverseList and printList implemented.

Challenge Questions -

Q) Easy questions -

Solution 1. Iterate, i.e from node go to node->next till you hit node == null. 2. Similar as above, just the breaking condition is now when node->val == find_value, return true. 3. Iterate to the kth element first. Let this node be a, and the next node be b. Now let us say we want to insert the new node named c, then we insert it like this - We set a->next = c. We also set c->next = b. We are done.

Refer to the solution code here

Q) Medium Question - Click here.

It is a stackoverflow question. I would recommend you to go through the question and first think about potential algorithms. Only after some time you should prefer to look up at the most voted answer given. (For maximising learning)

Solution Provided in the link.

Q) Advanced stuff - Brief description of SKIP LIST (Note - Definitely not for testing, can read it for fun though).

You can check out the link given to a brilliant article explaining “skip list”, a very powerful data structural idea built on top of linked list. The essence of the idea is similar to binary search trees, which you will encounter later in this course.